blob: 30c06bb10dafa54695ea1cdf7044d92530caeeda [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
73 # mips32r6 is not supported by the NDK. No released NDK contains these
74 # libraries, but the r10 in prebuilts/ndk had a local hack to add them :(
75 #
76 # We need to find a real solution to this problem, but until we do just drop
77 # mips32r6 things back to r10 to get the tree building again.
78 ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
79 ifeq ($(LOCAL_NDK_VERSION), current)
80 LOCAL_NDK_VERSION := r10
81 endif
82 endif
83
Dan Albert13306af2016-03-30 14:13:50 -070084 my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/$(LOCAL_NDK_VERSION)/sources
85 my_ndk_sysroot := $(HISTORICAL_NDK_VERSIONS_ROOT)/$(LOCAL_NDK_VERSION)/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Andrew Hsieh140761af02014-04-25 23:47:10 -070086 my_ndk_sysroot_include := $(my_ndk_sysroot)/usr/include
Dan Albert445bc2f2015-12-11 12:49:18 -080087
88 # x86_64 and and mips64 are both multilib toolchains, so their libraries are
89 # installed in /usr/lib64. Aarch64, on the other hand, is not a multilib
90 # compiler, so its libraries are in /usr/lib.
91 #
92 # Mips32r6 is yet another variation, with libraries installed in libr6.
93 #
94 # For the rest, the libraries are installed simply to /usr/lib.
95 ifneq (,$(filter x86_64 mips64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Andrew Hsieh140761af02014-04-25 23:47:10 -070096 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib64
Duane Sand1a074872014-11-08 15:25:18 -080097 else ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
98 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/libr6
Andrew Hsieh140761af02014-04-25 23:47:10 -070099 else
100 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib
101 endif
Ying Wangcce4c972011-03-03 18:53:53 -0800102
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -0700103 # The bionic linker now has support for packed relocations and gnu style
104 # hashes (which are much faster!), but shipping to older devices requires
Dan Albertee629c92015-12-09 14:52:25 -0800105 # the old style hash. Fortunately, we can build with both and it'll work
106 # anywhere.
Dan Albert8dca15f2015-12-09 16:26:20 -0800107 #
108 # This is not currently supported on MIPS architectures.
109 ifeq (,$(filter mips mips64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
110 my_ldflags += -Wl,--hash-style=both
111 endif
Dan Albertee629c92015-12-09 14:52:25 -0800112
113 # We don't want to expose the relocation packer to the NDK just yet.
114 LOCAL_PACK_MODULE_RELOCATIONS := false
Dan Albertd3d894d2014-11-14 15:28:49 -0800115
Ying Wangcce4c972011-03-03 18:53:53 -0800116 # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location.
117 # See ndk/docs/CPLUSPLUS-SUPPORT.html
118 my_ndk_stl_include_path :=
119 my_ndk_stl_shared_lib_fullpath :=
120 my_ndk_stl_shared_lib :=
121 my_ndk_stl_static_lib :=
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800122 my_ndk_stl_cppflags :=
Duane Sand1a074872014-11-08 15:25:18 -0800123 my_cpu_variant := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)
Nikola Veljkovicf7385622016-04-06 19:20:02 +0200124 ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
125 my_cpu_variant := mips32r6
126 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800127 LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800128 ifeq (,$(LOCAL_NDK_STL_VARIANT))
129 LOCAL_NDK_STL_VARIANT := system
130 endif
Dan Albert0e2e71d2015-12-09 14:46:13 -0800131 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 -0700132 $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800133 endif
134 ifeq (system,$(LOCAL_NDK_STL_VARIANT))
135 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
Dan Albert0e2e71d2015-12-09 14:46:13 -0800136 my_system_shared_libraries += libstdc++
Ying Wangcce4c972011-03-03 18:53:53 -0800137 else # LOCAL_NDK_STL_VARIANT is not system
138 ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
139 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
Dan Albert0e2e71d2015-12-09 14:46:13 -0800140 my_system_shared_libraries += libstdc++
Ying Wangcce4c972011-03-03 18:53:53 -0800141 ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800142 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 -0800143 my_ldlibs += -ldl
Ying Wangcce4c972011-03-03 18:53:53 -0800144 else
Duane Sand1a074872014-11-08 15:25:18 -0800145 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 -0800146 my_ndk_stl_shared_lib := -lstlport_shared
147 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800148 else # LOCAL_NDK_STL_VARIANT is not stlport_* either
149 ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
Dan Albert658d1e02016-03-22 17:17:40 -0700150 my_ndk_stl_include_path := \
151 $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include \
152 $(my_ndk_source_root)/android/support/include \
153
154 # Pre-r11 NDKs used libgabi++ for libc++'s C++ ABI, but r11 and later use
155 # libc++abi.
156 ifeq ($(LOCAL_NDK_VERSION),r10)
157 my_ndk_stl_include_path += \
158 $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include
159 else
160 my_ndk_stl_include_path += \
161 $(my_ndk_source_root)/cxx-stl/llvm-libc++abi/libcxxabi/include
162 endif
163
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800164 ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800165 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(my_cpu_variant)/libc++_static.a
Dan Alberta81e1b72016-03-10 15:17:09 -0800166 my_ldlibs += -ldl
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800167 else
Duane Sand1a074872014-11-08 15:25:18 -0800168 my_ndk_stl_shared_lib_fullpath := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(my_cpu_variant)/libc++_shared.so
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800169 my_ndk_stl_shared_lib := -lc++_shared
170 endif
171 my_ndk_stl_cppflags := -std=c++11
Dan Albert0e2e71d2015-12-09 14:46:13 -0800172 else # LOCAL_NDK_STL_VARIANT is not c++_* either
173 ifneq (,$(filter gnustl_%, $(LOCAL_NDK_STL_VARIANT)))
Duane Sand1a074872014-11-08 15:25:18 -0800174 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 -0700175 $(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 -0800176 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 -0800177 else # LOCAL_NDK_STL_VARIANT must be none
178 # Do nothing.
179 endif
Ying Wangcce4c972011-03-03 18:53:53 -0800180 endif
181 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800182 endif
Ying Wang1a081002010-07-13 14:55:47 -0700183endif
184
Dan Albert95994de2014-08-07 18:29:11 -0700185# MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
186# all code is position independent, and then those warnings get promoted to
187# errors.
Dan Willemsen057aaea2015-08-14 12:59:50 -0700188ifneq ($($(my_prefix)OS),windows)
Dan Willemsen7fe992c2016-03-02 13:54:51 -0800189ifneq ($(filter EXECUTABLES NATIVE_TESTS,$(LOCAL_MODULE_CLASS)),)
Dan Albert4803ce22014-08-06 12:36:46 -0700190my_cflags += -fpie
191else
192my_cflags += -fPIC
193endif
Dan Albert95994de2014-08-07 18:29:11 -0700194endif
Dan Albert4803ce22014-08-06 12:36:46 -0700195
Dan Willemsen7a549852015-08-13 17:51:40 -0700196ifdef LOCAL_IS_HOST_MODULE
Dan Willemsen85ac8d22015-08-18 17:47:06 -0700197my_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 -0700198my_static_libraries += $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)OS))
199my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)OS))
200my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)OS))
201my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)OS))
202my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)OS))
203my_ldlibs += $(LOCAL_LDLIBS_$($(my_prefix)OS))
204my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)OS))
205my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)OS))
206my_generated_sources += $(LOCAL_GENERATED_SOURCES_$($(my_prefix)OS))
207endif
208
Ying Wang6feb6d52014-04-17 10:03:35 -0700209my_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 -0700210my_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 -0700211my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix))
212my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix))
213my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix))
214my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix))
215my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix))
216my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix))
217my_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 -0800218
Dan Willemsenc29172c2015-12-03 22:58:39 -0800219my_missing_exclude_files := $(filter-out $(my_src_files),$(my_src_files_exclude))
220ifneq ($(my_missing_exclude_files),)
221$(warning Files are listed in LOCAL_SRC_FILES_EXCLUDE but not LOCAL_SRC_FILES)
222$(error $(my_missing_exclude_files))
223endif
Colin Crossa04abc82015-06-30 12:21:59 -0700224my_src_files := $(filter-out $(my_src_files_exclude),$(my_src_files))
225
Dan Albertdb905e72014-08-18 11:14:38 -0700226my_clang := $(strip $(LOCAL_CLANG))
Ying Wang824344a2014-05-27 13:03:36 -0700227ifdef LOCAL_CLANG_$(my_32_64_bit_suffix)
Dan Albertdb905e72014-08-18 11:14:38 -0700228my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix)))
Ying Wang824344a2014-05-27 13:03:36 -0700229endif
230ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Dan Albertdb905e72014-08-18 11:14:38 -0700231my_clang := $(strip $(LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Ying Wang824344a2014-05-27 13:03:36 -0700232endif
233
Tim Murray92d79cb2014-04-04 14:38:29 -0700234# clang is enabled by default for host builds
235# enable it unless we've specifically disabled clang above
236ifdef LOCAL_IS_HOST_MODULE
Dan Willemsen95374772016-03-29 12:34:03 -0700237 ifeq ($($(my_prefix)OS),windows)
238 ifeq ($(my_clang),true)
239 $(error $(LOCAL_MODULE_MAKEFILE): $(LOCAL_MODULE): Clang is not yet supported for windows binaries)
240 endif
241 my_clang := false
242 else
243 ifeq ($(my_clang),)
244 my_clang := true
245 endif
Tim Murray5ca1dc12014-07-24 14:42:53 -0700246 endif
Chih-Hung Hsiehb5da9d92016-01-06 11:49:25 -0800247# Add option to make gcc the default for device build
248else ifeq ($(USE_CLANG_PLATFORM_BUILD),false)
Dan Willemsen77288172015-09-09 15:45:21 -0700249 ifeq ($(my_clang),)
Chih-Hung Hsiehb5da9d92016-01-06 11:49:25 -0800250 my_clang := false
Dan Willemsen77288172015-09-09 15:45:21 -0700251 endif
Chih-Hung Hsiehb5da9d92016-01-06 11:49:25 -0800252else ifeq ($(my_clang),)
253 my_clang := true
Dan Willemsen77288172015-09-09 15:45:21 -0700254endif
255
Dan Albertc7d307d2015-07-29 15:13:57 -0700256my_cpp_std_version := -std=gnu++14
Dan Albertda637392015-10-26 11:09:24 -0700257
258ifneq ($(my_clang),true)
259 # GCC uses an invalid C++14 ABI (emits calls to
260 # __cxa_throw_bad_array_length, which is not a valid C++ RT ABI).
261 # http://b/25022512
262 my_cpp_std_version := -std=gnu++11
263endif
264
Dan Albertc7d307d2015-07-29 15:13:57 -0700265ifdef LOCAL_SDK_VERSION
266 # The NDK handles this itself.
267 my_cpp_std_version :=
268endif
269
270ifdef LOCAL_IS_HOST_MODULE
271 ifneq ($(my_clang),true)
272 # The host GCC doesn't support C++14 (and is deprecated, so likely
273 # never will). Build these modules with C++11.
274 my_cpp_std_version := -std=gnu++11
275 endif
276endif
277
278my_cppflags := $(my_cpp_std_version) $(my_cppflags)
279
Tim Murray06659bc2014-08-13 11:53:07 -0700280
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800281# arch-specific static libraries go first so that generic ones can depend on them
Ying Wang6feb6d52014-04-17 10:03:35 -0700282my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries)
283my_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 -0800284
Ying Wang75e8fcb2014-10-07 13:03:29 -0700285include $(BUILD_SYSTEM)/cxx_stl_setup.mk
Ying Wangd90de322014-05-23 16:42:37 -0700286
Ying Wang285045b2013-08-13 12:35:10 -0700287# Add static HAL libraries
288ifdef LOCAL_HAL_STATIC_LIBRARIES
289$(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \
290 $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\
Ying Wang6ef65192014-01-15 16:02:16 -0800291 $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\
292 $(eval my_static_libraries += $(lib).default)))
Ying Wang285045b2013-08-13 12:35:10 -0700293b_lib :=
294endif
295
Nicolas Geoffrayb7c9f322015-09-25 13:54:09 +0100296ifneq ($(strip $(CUSTOM_$(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)LINKER)),)
297 my_linker := $(CUSTOM_$(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)LINKER)
298else
299 my_linker := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_LINKER)
300endif
Evgenii Stepanov8f5e67a2015-07-10 18:06:51 -0700301
Dan Albert4ae5d4b2014-10-31 16:23:08 -0700302include $(BUILD_SYSTEM)/config_sanitizers.mk
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400303
Shih-wei Liaoc8dfc162013-01-27 01:45:59 -0800304# Add in libcompiler_rt for all regular device builds
Dan Albert30a9c352015-04-09 14:41:06 -0700305ifeq (,$(LOCAL_SDK_VERSION)$(WITHOUT_LIBCOMPILER_RT))
Ying Wang6ef65192014-01-15 16:02:16 -0800306 my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES)
Stephen Hinesc72f3962012-06-11 14:53:34 -0700307endif
308
Jing Yu2dcc8062009-09-21 16:31:50 -0700309####################################################
310## Add FDO flags if FDO is turned on and supported
Dehao Chen295a6d22014-09-19 10:18:12 -0700311## Please note that we will do option filtering during FDO build.
312## i.e. Os->O2, remove -fno-early-inline and -finline-limit.
313##################################################################
Ying Wang45d01432014-10-28 14:50:59 -0700314my_fdo_build :=
315ifneq ($(filter true always, $(LOCAL_FDO_SUPPORT)),)
316 ifeq ($(BUILD_FDO_INSTRUMENT),true)
317 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_CFLAGS)
318 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_LDFLAGS)
319 my_fdo_build := true
320 else ifneq ($(filter true,$(BUILD_FDO_OPTIMIZE))$(filter always,$(LOCAL_FDO_SUPPORT)),)
321 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_OPTIMIZE_CFLAGS)
322 my_fdo_build := true
synergydev4a605762013-08-05 02:44:37 -0700323 endif
Shinichiro Hamaji09295a82015-09-24 17:51:20 +0900324 # Disable ccache (or other compiler wrapper) except gomacc, which
325 # can handle -fprofile-use properly.
326 my_cc_wrapper := $(filter $(GOMA_CC),$(my_cc_wrapper))
327 my_cxx_wrapper := $(filter $(GOMA_CC),$(my_cxx_wrapper))
Jing Yu2dcc8062009-09-21 16:31:50 -0700328endif
329
The Android Open Source Project88b60792009-03-03 19:28:42 -0800330###########################################################
Jim Huang20d1ba62010-10-14 16:15:56 +0800331## Explicitly declare assembly-only __ASSEMBLY__ macro for
332## assembly source
333###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800334my_asflags += -D__ASSEMBLY__
Jim Huang20d1ba62010-10-14 16:15:56 +0800335
Ying Wangd8d37212014-03-21 16:17:04 -0700336
Jim Huang20d1ba62010-10-14 16:15:56 +0800337###########################################################
Ying Wang1a081002010-07-13 14:55:47 -0700338## Define PRIVATE_ variables from global vars
339###########################################################
Ying Wang7fff9a12014-01-09 14:39:41 -0800340ifndef LOCAL_IS_HOST_MODULE
Ying Wang848020f2012-08-14 10:13:16 -0700341ifdef LOCAL_SDK_VERSION
Ying Wang1a081002010-07-13 14:55:47 -0700342my_target_project_includes :=
Andrew Hsieh140761af02014-04-25 23:47:10 -0700343my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_sysroot_include)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800344my_target_global_cppflags := $(my_ndk_stl_cppflags)
Ying Wang1a081002010-07-13 14:55:47 -0700345else
Ying Wang6ef65192014-01-15 16:02:16 -0800346my_target_project_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES)
347my_target_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_C_INCLUDES)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800348my_target_global_cppflags :=
Ying Wangf4723fa2013-08-15 11:01:10 -0700349endif # LOCAL_SDK_VERSION
350
Ying Wang824344a2014-05-27 13:03:36 -0700351ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800352my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800353my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800354my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CPPFLAGS)
Ying Wang1f982832014-02-06 18:08:44 -0800355my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_LDFLAGS)
Ying Wangda4bf422012-08-16 16:45:01 -0700356else
Ying Wang6ef65192014-01-15 16:02:16 -0800357my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800358my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800359my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800360my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700361endif # my_clang
Ying Wangda4bf422012-08-16 16:45:01 -0700362
Ying Wang1a081002010-07-13 14:55:47 -0700363$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes)
Evgeniy Stepanova7095e92012-03-30 12:18:52 +0400364$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes)
Ying Wang1a081002010-07-13 14:55:47 -0700365$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800366$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CONLYFLAGS := $(my_target_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800367$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags)
368$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags)
369
Ying Wang7fff9a12014-01-09 14:39:41 -0800370else # LOCAL_IS_HOST_MODULE
371
Ying Wang824344a2014-05-27 13:03:36 -0700372ifeq ($(my_clang),true)
Dan Willemsen057aaea2015-08-14 12:59:50 -0700373my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CFLAGS)
374my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CONLYFLAGS)
375my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CPPFLAGS)
376my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_LDFLAGS)
377my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)C_INCLUDES)
Logan Chiene6f65432013-12-10 19:07:41 +0800378else
Dan Willemsen057aaea2015-08-14 12:59:50 -0700379my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CFLAGS)
380my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CONLYFLAGS)
381my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CPPFLAGS)
382my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_LDFLAGS)
383my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)C_INCLUDES)
Ying Wang824344a2014-05-27 13:03:36 -0700384endif # my_clang
Logan Chiene6f65432013-12-10 19:07:41 +0800385
386$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_C_INCLUDES := $(my_host_c_includes)
387$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800388$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CONLYFLAGS := $(my_host_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800389$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags)
390$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags)
391endif # LOCAL_IS_HOST_MODULE
Ying Wang1a081002010-07-13 14:55:47 -0700392
Dan Albert43e128a2015-01-23 16:12:57 -0800393# To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and
394# build with NATIVE_COVERAGE=true in your enviornment. Note that the build
395# system is not sensitive to changes to NATIVE_COVERAGE, so you should do a
396# clean build of your module after toggling it.
397ifeq ($(NATIVE_COVERAGE),true)
398 ifeq ($(my_native_coverage),true)
Dan Albert343ed672015-01-25 16:20:57 -0800399 # Note that clang coverage doesn't play nicely with acov out of the box.
400 # Clang apparently generates .gcno files that aren't compatible with
401 # gcov-4.8. This can be solved by installing gcc-4.6 and invoking lcov
402 # with `--gcov-tool /usr/bin/gcov-4.6`.
403 #
404 # http://stackoverflow.com/questions/17758126/clang-code-coverage-invalid-output
Dan Albert2c03e042015-01-24 15:14:35 -0800405 my_cflags += --coverage -O0
Dan Albert343ed672015-01-25 16:20:57 -0800406 my_ldflags += --coverage
Dan Albert43e128a2015-01-23 16:12:57 -0800407 endif
408else
409 my_native_coverage := false
410endif
411
Dan Albert7fbbc5d2015-10-08 14:16:39 -0700412ifeq ($(my_clang),true)
413 my_coverage_lib := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_LIBPROFILE_RT)
414else
Dan Willemsendb16dd22016-05-16 14:41:49 -0700415 my_coverage_lib := $(call intermediates-dir-for,STATIC_LIBRARIES,libgcov,,,$(LOCAL_2ND_ARCH_VAR_PREFIX))/libgcov.a
Dan Albert7fbbc5d2015-10-08 14:16:39 -0700416endif
417
418$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_COVERAGE_LIB := $(my_coverage_lib)
419
Ying Wang1a081002010-07-13 14:55:47 -0700420###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800421## Define PRIVATE_ variables used by multiple module types
422###########################################################
423$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700424 $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800425
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800426ifeq ($(strip $(WITH_SYNTAX_CHECK)),)
427 LOCAL_NO_SYNTAX_CHECK := true
428endif
429
Andrew Hsieh906cb782013-09-10 17:37:14 +0800430ifeq ($(strip $(WITH_STATIC_ANALYZER)),)
431 LOCAL_NO_STATIC_ANALYZER := true
432endif
433
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800434# Clang does not recognize all gcc flags.
435# Use static analyzer only if clang is used.
436ifneq ($(my_clang),true)
437 LOCAL_NO_STATIC_ANALYZER := true
438endif
439
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800440ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
441 my_syntax_arch := host
442else
Ying Wang6ef65192014-01-15 16:02:16 -0800443 my_syntax_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800444endif
445
Ying Wang6ef65192014-01-15 16:02:16 -0800446ifeq ($(strip $(my_cc)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700447 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800448 my_cc := $(CLANG)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400449 else
Ying Wang6ef65192014-01-15 16:02:16 -0800450 my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400451 endif
Ying Wangc671a7c2015-07-20 18:40:18 -0700452 my_cc := $(my_cc_wrapper) $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800453endif
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800454
Andrew Hsieh906cb782013-09-10 17:37:14 +0800455ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800456 my_cc := CCC_CC=$(CLANG) CLANG=$(CLANG) \
457 $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer
Andrew Hsieh906cb782013-09-10 17:37:14 +0800458else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800459ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800460 my_cc := $(my_cc) -fsyntax-only
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800461endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800462endif
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800463
Ying Wang6ef65192014-01-15 16:02:16 -0800464$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800465
Ying Wang6ef65192014-01-15 16:02:16 -0800466ifeq ($(strip $(my_cxx)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700467 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800468 my_cxx := $(CLANG_CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400469 else
Ying Wang6ef65192014-01-15 16:02:16 -0800470 my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400471 endif
Ying Wangc671a7c2015-07-20 18:40:18 -0700472 my_cxx := $(my_cxx_wrapper) $(my_cxx)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800473endif
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800474
Andrew Hsieh906cb782013-09-10 17:37:14 +0800475ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800476 my_cxx := CCC_CXX=$(CLANG_CXX) CLANG_CXX=$(CLANG_CXX) \
477 $(SYNTAX_TOOLS_PREFIX)/c++-analyzer
Andrew Hsieh906cb782013-09-10 17:37:14 +0800478else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800479ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800480 my_cxx := $(my_cxx) -fsyntax-only
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800481endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800482endif
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800483
Evgenii Stepanov8f5e67a2015-07-10 18:06:51 -0700484$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LINKER := $(my_linker)
Ying Wang6ef65192014-01-15 16:02:16 -0800485$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(my_cxx)
Dan Albertb6bb71b2014-08-05 14:44:41 -0700486$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800487
488# TODO: support a mix of standard extensions so that this isn't necessary
489LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION))
490ifeq ($(LOCAL_CPP_EXTENSION),)
491 LOCAL_CPP_EXTENSION := .cpp
492endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800493
494# Certain modules like libdl have to have symbols resolved at runtime and blow
495# up if --no-undefined is passed to the linker.
496ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),)
Dan Albertb58fb4a2014-11-14 17:15:00 -0800497ifeq ($(my_allow_undefined_symbols),)
Dan Willemsen8308f502016-05-18 12:50:53 -0700498 my_ldflags += -Wl,--no-undefined
The Android Open Source Project88b60792009-03-03 19:28:42 -0800499endif
500endif
501
Ying Wangfcdabd42011-04-25 14:22:41 -0700502ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES))
503$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true
504else
505$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES :=
506endif
507
The Android Open Source Project88b60792009-03-03 19:28:42 -0800508###########################################################
509## Define arm-vs-thumb-mode flags.
510###########################################################
511LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE))
Ying Wangfaeb6932015-04-07 11:59:34 -0700512ifeq ($($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800513arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm)
514normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb)
515
Dave Bort95282482009-04-23 18:44:55 -0700516# Read the values from something like TARGET_arm_CFLAGS or
517# TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't
518# actually used (although they are usually empty).
Ying Wang6ef65192014-01-15 16:02:16 -0800519arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS)
520normal_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(normal_objects_mode)_CFLAGS)
Dan Albertdb905e72014-08-18 11:14:38 -0700521ifeq ($(my_clang),true)
Dan Willemsen02268f02016-05-19 14:39:25 -0700522arm_objects_cflags := $(call convert-to-clang-flags,$(arm_objects_cflags))
523normal_objects_cflags := $(call convert-to-clang-flags,$(normal_objects_cflags))
Evgeniy Stepanovf50f4c52012-04-05 11:44:37 +0400524endif
525
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800526else
527arm_objects_mode :=
528normal_objects_mode :=
529arm_objects_cflags :=
530normal_objects_cflags :=
531endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800532
533###########################################################
534## Define per-module debugging flags. Users can turn on
535## debugging for a particular module by setting DEBUG_MODULE_ModuleName
536## to a non-empty value in their environment or buildspec.mk,
537## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the
538## debug flags that they want to use.
539###########################################################
540ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE))
541 debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS)
542else
543 debug_cflags :=
544endif
545
Tim Murraya7aa8002012-10-29 16:06:00 -0700546####################################################
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800547## Keep track of src -> obj mapping
548####################################################
549
550my_tracked_gen_files :=
551my_tracked_src_files :=
552
553###########################################################
554## Stuff source generated from one-off tools
555###########################################################
556$(my_generated_sources): PRIVATE_MODULE := $(my_register_name)
557
558my_gen_sources_copy := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(filter $(generated_sources_dir)/%,$(my_generated_sources)))
559
Dan Willemsen7f016152016-02-29 17:52:39 -0800560$(my_gen_sources_copy): $(intermediates)/% : $(generated_sources_dir)/%
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800561 @echo "Copy: $@"
562 $(copy-file-to-target)
563
564my_generated_sources := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(my_generated_sources))
565
566# Generated sources that will actually produce object files.
567# Other files (like headers) are allowed in LOCAL_GENERATED_SOURCES,
568# since other compiled sources may depend on them, and we set up
569# the dependencies.
Dan Willemsen444c3232016-02-04 14:18:48 -0800570my_gen_src_files := $(filter %.c %$(LOCAL_CPP_EXTENSION) %.S %.s,$(my_generated_sources))
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800571
572ALL_GENERATED_SOURCES += $(my_generated_sources)
573
574####################################################
Tim Murraya7aa8002012-10-29 16:06:00 -0700575## Compile RenderScript with reflected C++
576####################################################
577
Ying Wangb8e01852014-01-23 15:09:04 -0800578renderscript_sources := $(filter %.rs %.fs,$(my_src_files))
Tim Murraya7aa8002012-10-29 16:06:00 -0700579
580ifneq (,$(renderscript_sources))
581
582renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
583RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp
584renderscript_intermediate := $(intermediates)/renderscript
585
Noah Presler4796a8c2015-08-13 17:04:10 -0700586renderscript_target_api :=
587
588ifneq (,$(LOCAL_RENDERSCRIPT_TARGET_API))
589renderscript_target_api := $(LOCAL_RENDERSCRIPT_TARGET_API)
590else
591ifneq (,$(LOCAL_SDK_VERSION))
592# Set target-api for LOCAL_SDK_VERSIONs other than current.
Michael Wright0fb087f2015-11-06 15:20:51 +0000593ifneq (,$(filter-out current system_current test_current, $(LOCAL_SDK_VERSION)))
Noah Presler4796a8c2015-08-13 17:04:10 -0700594renderscript_target_api := $(LOCAL_SDK_VERSION)
595endif
596endif # LOCAL_SDK_VERSION is set
597endif # LOCAL_RENDERSCRIPT_TARGET_API is set
598
599
Tim Murraya7aa8002012-10-29 16:06:00 -0700600ifeq ($(LOCAL_RENDERSCRIPT_CC),)
601LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
602endif
603
604# Turn on all warnings and warnings as errors for RS compiles.
605# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
606renderscript_flags := -Wall -Werror
607renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
Ying Wangacaada12014-09-10 16:11:41 -0700608# -m32 or -m64
609renderscript_flags += -m$(my_32_64_bit_suffix)
Tim Murrayf0020c62014-09-10 15:11:01 -0700610
Ying Wang6ef65192014-01-15 16:02:16 -0800611renderscript_includes := \
Tim Murraya7aa8002012-10-29 16:06:00 -0700612 $(TOPDIR)external/clang/lib/Headers \
613 $(TOPDIR)frameworks/rs/scriptc \
614 $(LOCAL_RENDERSCRIPT_INCLUDES)
615
616ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
Ying Wang6ef65192014-01-15 16:02:16 -0800617renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
Tim Murraya7aa8002012-10-29 16:06:00 -0700618endif
619
Ying Wangb9319562015-04-03 16:15:28 -0700620bc_dep_files := $(addprefix $(renderscript_intermediate)/, \
621 $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
622
Ying Wang6ef65192014-01-15 16:02:16 -0800623$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes)
Tim Murraya7aa8002012-10-29 16:06:00 -0700624$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
625$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
626$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
627$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate)
Noah Presler4796a8c2015-08-13 17:04:10 -0700628$(RenderScript_file_stamp): PRIVATE_RS_TARGET_API := $(renderscript_target_api)
Ying Wangb9319562015-04-03 16:15:28 -0700629$(RenderScript_file_stamp): PRIVATE_DEP_FILES := $(bc_dep_files)
Tim Murraya7aa8002012-10-29 16:06:00 -0700630$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
631 $(transform-renderscripts-to-cpp-and-bc)
632
Ying Wangb9319562015-04-03 16:15:28 -0700633# include the dependency files (.d/.P) generated by llvm-rs-cc.
Shinichiro Hamaji2e45fd02016-01-25 18:59:43 +0900634$(call include-depfile,$(RenderScript_file_stamp).P,$(RenderScript_file_stamp))
Tim Murraya7aa8002012-10-29 16:06:00 -0700635
636LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
637
638rs_generated_cpps := $(addprefix \
639 $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \
640 $(notdir $(renderscript_sources)))))
641
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800642$(call track-src-file-gen,$(renderscript_sources),$(rs_generated_cpps))
643
Stephen Hines8ff92522014-06-06 12:51:47 -0700644# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Tim Murraya7aa8002012-10-29 16:06:00 -0700645$(rs_generated_cpps) : $(RenderScript_file_stamp)
Ying Wang81ab8332014-05-28 16:17:09 -0700646 @echo "Updated RS generated cpp file $@."
Ying Wange25b3982015-02-26 18:47:21 -0800647 $(hide) touch $@
Tim Murraya7aa8002012-10-29 16:06:00 -0700648
Ying Wang6ef65192014-01-15 16:02:16 -0800649my_c_includes += $(renderscript_intermediate)
650my_generated_sources += $(rs_generated_cpps)
Tim Murraya7aa8002012-10-29 16:06:00 -0700651
652endif
653
654
The Android Open Source Project88b60792009-03-03 19:28:42 -0800655###########################################################
Ying Wangfaeb6932015-04-07 11:59:34 -0700656## Compile the .proto files to .cc (or .c) and then to .o
Ying Wanga5fc87a2010-11-02 18:43:16 -0700657###########################################################
Ying Wangb8e01852014-01-23 15:09:04 -0800658proto_sources := $(filter %.proto,$(my_src_files))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700659ifneq ($(proto_sources),)
Ying Wang05f9f352016-05-05 20:02:08 -0700660proto_gen_dir := $(generated_sources_dir)/proto
Shinichiro Hamajia3184dc2016-04-05 17:34:51 +0900661proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
Ying Wangfaeb6932015-04-07 11:59:34 -0700662
Ying Wang05f9f352016-05-05 20:02:08 -0700663my_rename_cpp_ext :=
Ying Wangfaeb6932015-04-07 11:59:34 -0700664ifneq (,$(filter nanopb-c nanopb-c-enable_malloc, $(LOCAL_PROTOC_OPTIMIZE_TYPE)))
665my_proto_source_suffix := .c
666my_proto_c_includes := external/nanopb-c
Ying Wang05f9f352016-05-05 20:02:08 -0700667my_protoc_flags := --nanopb_out=$(proto_gen_dir) \
Ying Wangfaeb6932015-04-07 11:59:34 -0700668 --plugin=external/nanopb-c/generator/protoc-gen-nanopb
Shinichiro Hamajia3184dc2016-04-05 17:34:51 +0900669my_protoc_deps := $(NANOPB_SRCS) $(proto_sources_fullpath:%.proto=%.options)
Ying Wangfaeb6932015-04-07 11:59:34 -0700670else
Ying Wang05f9f352016-05-05 20:02:08 -0700671my_proto_source_suffix := $(LOCAL_CPP_EXTENSION)
672ifneq ($(my_proto_source_suffix),.cc)
673# aprotoc is hardcoded to write out only .cc file.
674# We need to rename the extension to $(LOCAL_CPP_EXTENSION) if it's not .cc.
675my_rename_cpp_ext := true
676endif
Ying Wangfaeb6932015-04-07 11:59:34 -0700677my_proto_c_includes := external/protobuf/src
678my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI
Ying Wang05f9f352016-05-05 20:02:08 -0700679my_protoc_flags := --cpp_out=$(proto_gen_dir)
Shinichiro Hamajia3184dc2016-04-05 17:34:51 +0900680my_protoc_deps :=
Ying Wangfaeb6932015-04-07 11:59:34 -0700681endif
Ying Wang05f9f352016-05-05 20:02:08 -0700682my_proto_c_includes += $(proto_gen_dir)
Ying Wangfaeb6932015-04-07 11:59:34 -0700683
Ying Wang05f9f352016-05-05 20:02:08 -0700684proto_generated_cpps := $(addprefix $(proto_gen_dir)/, \
Ying Wangfaeb6932015-04-07 11:59:34 -0700685 $(patsubst %.proto,%.pb$(my_proto_source_suffix),$(proto_sources_fullpath)))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700686
Ying Wangead89442014-02-25 11:18:40 -0800687# Ensure the transform-proto-to-cc rule is only defined once in multilib build.
Ying Wang05f9f352016-05-05 20:02:08 -0700688ifndef $(my_host)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined
689$(proto_generated_cpps): PRIVATE_PROTO_INCLUDES := $(TOP)
690$(proto_generated_cpps): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS) $(my_protoc_flags)
691$(proto_generated_cpps): PRIVATE_RENAME_CPP_EXT := $(my_rename_cpp_ext)
692$(proto_generated_cpps): $(proto_gen_dir)/%.pb$(my_proto_source_suffix): %.proto $(my_protoc_deps) $(PROTOC)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700693 $(transform-proto-to-cc)
694
Ying Wang05f9f352016-05-05 20:02:08 -0700695$(my_host)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true
Ying Wangfaeb6932015-04-07 11:59:34 -0700696endif
Ying Wang05f9f352016-05-05 20:02:08 -0700697# Ideally we can generate the source directly into $(intermediates).
698# But many Android.mks assume the .pb.hs are in $(generated_sources_dir).
699# As a workaround, we make a copy in the $(intermediates).
700proto_intermediate_dir := $(intermediates)/proto
701proto_intermediate_cpps := $(patsubst $(proto_gen_dir)/%,$(proto_intermediate_dir)/%,\
702 $(proto_generated_cpps))
703$(proto_intermediate_cpps) : $(proto_intermediate_dir)/% : $(proto_gen_dir)/%
704 @echo "Copy: $@"
705 $(copy-file-to-target)
706 $(hide) cp $(basename $<).h $(basename $@).h
707$(call track-src-file-gen,$(proto_sources),$(proto_intermediate_cpps))
708
709my_generated_sources += $(proto_intermediate_cpps)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700710
Ying Wangfaeb6932015-04-07 11:59:34 -0700711my_c_includes += $(my_proto_c_includes)
712# Auto-export the generated proto source dir.
713my_export_c_include_dirs += $(my_proto_c_includes)
714
715ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c-enable_malloc)
Ying Wang8a0d53e2015-04-08 09:54:34 -0700716 my_static_libraries += libprotobuf-c-nano-enable_malloc
Ying Wangfaeb6932015-04-07 11:59:34 -0700717else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c)
Ying Wang8a0d53e2015-04-08 09:54:34 -0700718 my_static_libraries += libprotobuf-c-nano
Ying Wangfaeb6932015-04-07 11:59:34 -0700719else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full)
Dan Albertc3031c72014-11-11 10:42:17 -0800720 ifdef LOCAL_SDK_VERSION
Dan Alberta187fb52015-09-08 10:47:03 -0700721 my_static_libraries += libprotobuf-cpp-full-ndk
Dan Albertc3031c72014-11-11 10:42:17 -0800722 else
723 my_shared_libraries += libprotobuf-cpp-full
724 endif
Yabin Cui72a11562016-06-07 19:21:12 -0700725else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),lite-static)
726 my_static_libraries += libprotobuf-cpp-lite
Ying Wanga5fc87a2010-11-02 18:43:16 -0700727else
Dan Albertc3031c72014-11-11 10:42:17 -0800728 ifdef LOCAL_SDK_VERSION
Dan Alberta187fb52015-09-08 10:47:03 -0700729 my_static_libraries += libprotobuf-cpp-lite-ndk
Dan Albertc3031c72014-11-11 10:42:17 -0800730 else
731 my_shared_libraries += libprotobuf-cpp-lite
732 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700733endif
Ying Wangead89442014-02-25 11:18:40 -0800734endif # $(proto_sources) non-empty
Ying Wanga5fc87a2010-11-02 18:43:16 -0700735
Ying Wanga5fc87a2010-11-02 18:43:16 -0700736###########################################################
Christopher Wiley9b17dea2015-08-20 09:08:17 -0700737## Compile the .dbus-xml files to c++ headers
Christopher Wileybc2be462015-07-29 17:14:24 -0700738###########################################################
Christopher Wiley9b17dea2015-08-20 09:08:17 -0700739dbus_definitions := $(filter %.dbus-xml,$(my_src_files))
Christopher Wiley529f1762015-08-14 14:55:32 -0700740dbus_generated_headers :=
741ifneq ($(dbus_definitions),)
Christopher Wileybc2be462015-07-29 17:14:24 -0700742
Christopher Wiley529f1762015-08-14 14:55:32 -0700743dbus_definition_paths := $(addprefix $(LOCAL_PATH)/,$(dbus_definitions))
Christopher Wileybc2be462015-07-29 17:14:24 -0700744dbus_service_config := $(filter %dbus-service-config.json,$(my_src_files))
Christopher Wiley529f1762015-08-14 14:55:32 -0700745dbus_service_config_path := $(addprefix $(LOCAL_PATH)/,$(dbus_service_config))
Christopher Wileybc2be462015-07-29 17:14:24 -0700746
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800747# Mark these source files as not producing objects
748$(call track-src-file-obj,$(dbus_definitions) $(dbus_service_config),)
749
Christopher Wiley529f1762015-08-14 14:55:32 -0700750dbus_gen_dir := $(generated_sources_dir)/dbus_bindings
Christopher Wileybc2be462015-07-29 17:14:24 -0700751
Christopher Wiley529f1762015-08-14 14:55:32 -0700752ifdef LOCAL_DBUS_PROXY_PREFIX
753dbus_header_dir := $(dbus_gen_dir)/include/$(LOCAL_DBUS_PROXY_PREFIX)
754dbus_headers := dbus-proxies.h
755else
756dbus_header_dir := $(dbus_gen_dir)
Christopher Wiley9b17dea2015-08-20 09:08:17 -0700757dbus_headers := $(patsubst %.dbus-xml,%.h,$(dbus_definitions))
Christopher Wiley529f1762015-08-14 14:55:32 -0700758endif
759dbus_generated_headers := $(addprefix $(dbus_header_dir)/,$(dbus_headers))
Christopher Wileybc2be462015-07-29 17:14:24 -0700760
761# Ensure that we only define build rules once in multilib builds.
762ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined
763$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined := true
Christopher Wiley529f1762015-08-14 14:55:32 -0700764
765$(dbus_generated_headers): PRIVATE_MODULE := $(LOCAL_MODULE)
766$(dbus_generated_headers): PRIVATE_DBUS_SERVICE_CONFIG := $(dbus_service_config_path)
767$(dbus_generated_headers) : $(dbus_service_config_path) $(DBUS_GENERATOR)
768ifdef LOCAL_DBUS_PROXY_PREFIX
769$(dbus_generated_headers) : $(dbus_definition_paths)
770 $(generate-dbus-proxies)
Peter Qiu425e0192015-10-14 16:46:41 -0700771else
772$(dbus_generated_headers) : $(dbus_header_dir)/%.h : $(LOCAL_PATH)/%.dbus-xml
773 $(generate-dbus-adaptors)
774endif # $(LOCAL_DBUS_PROXY_PREFIX)
775endif # $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined
Christopher Wiley529f1762015-08-14 14:55:32 -0700776
Peter Qiu425e0192015-10-14 16:46:41 -0700777ifdef LOCAL_DBUS_PROXY_PREFIX
Christopher Wiley529f1762015-08-14 14:55:32 -0700778# Auto-export the generated dbus proxy directory.
779my_export_c_include_dirs += $(dbus_gen_dir)/include
780my_c_includes += $(dbus_gen_dir)/include
781else
Christopher Wiley529f1762015-08-14 14:55:32 -0700782my_export_c_include_dirs += $(dbus_header_dir)
783my_c_includes += $(dbus_header_dir)
784endif # $(LOCAL_DBUS_PROXY_PREFIX)
Christopher Wileybc2be462015-07-29 17:14:24 -0700785
Christopher Wiley529f1762015-08-14 14:55:32 -0700786my_generated_sources += $(dbus_generated_headers)
787
788endif # $(dbus_definitions) non-empty
Christopher Wileybc2be462015-07-29 17:14:24 -0700789
790
791###########################################################
Christopher Wiley2df75d12015-10-14 17:27:24 -0700792## AIDL: Compile .aidl files to .cpp and .h files
793###########################################################
794aidl_src := $(strip $(filter %.aidl,$(my_src_files)))
795aidl_gen_cpp :=
796ifneq ($(aidl_src),)
797
Christopher Wiley257796c2016-01-19 08:58:35 -0800798# Use the intermediates directory to avoid writing our own .cpp -> .o rules.
Christopher Wiley2df75d12015-10-14 17:27:24 -0700799aidl_gen_cpp_root := $(intermediates)/aidl-generated/src
800aidl_gen_include_root := $(intermediates)/aidl-generated/include
801
Christopher Wiley257796c2016-01-19 08:58:35 -0800802# Multi-architecture builds have distinct intermediates directories.
803# Thus we'll actually generate source for each architecture.
804$(foreach s,$(aidl_src),\
805 $(eval $(call define-aidl-cpp-rule,$(s),$(aidl_gen_cpp_root),aidl_gen_cpp)))
Christopher Wiley087f3272016-01-19 09:26:10 -0800806$(foreach cpp,$(aidl_gen_cpp), \
Shinichiro Hamaji2e45fd02016-01-25 18:59:43 +0900807 $(call include-depfile,$(addsuffix .aidl.P,$(basename $(cpp))),$(cpp)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800808$(call track-src-file-gen,$(aidl_src),$(aidl_gen_cpp))
Christopher Wiley2df75d12015-10-14 17:27:24 -0700809
Christopher Wiley2df75d12015-10-14 17:27:24 -0700810$(aidl_gen_cpp) : PRIVATE_MODULE := $(LOCAL_MODULE)
811$(aidl_gen_cpp) : PRIVATE_HEADER_OUTPUT_DIR := $(aidl_gen_include_root)
812$(aidl_gen_cpp) : PRIVATE_AIDL_FLAGS := $(addprefix -I,$(LOCAL_AIDL_INCLUDES))
813
Christopher Wileyc7e936f2015-11-19 07:06:01 -0800814# Add generated headers to include paths.
Christopher Wiley2df75d12015-10-14 17:27:24 -0700815my_c_includes += $(aidl_gen_include_root)
Christopher Wileyc7e936f2015-11-19 07:06:01 -0800816my_export_c_include_dirs += $(aidl_gen_include_root)
Christopher Wiley2df75d12015-10-14 17:27:24 -0700817# Pick up the generated C++ files later for transformation to .o files.
818my_generated_sources += $(aidl_gen_cpp)
819
820endif # $(aidl_src) non-empty
821
822###########################################################
Keun Soo Yim3d484752016-02-19 11:06:58 -0800823## Compile the .vts files to .cc (or .c) and then to .o
824###########################################################
825
826vts_src := $(strip $(filter %.vts,$(my_src_files)))
827vts_gen_cpp :=
828ifneq ($(vts_src),)
829
830# Use the intermediates directory to avoid writing our own .cpp -> .o rules.
831vts_gen_cpp_root := $(intermediates)/vts-generated/src
832vts_gen_include_root := $(intermediates)/vts-generated/include
833
834# Multi-architecture builds have distinct intermediates directories.
835# Thus we'll actually generate source for each architecture.
836$(foreach s,$(vts_src),\
837 $(eval $(call define-vts-cpp-rule,$(s),$(vts_gen_cpp_root),vts_gen_cpp)))
838$(foreach cpp,$(vts_gen_cpp), \
839 $(call include-depfile,$(addsuffix .vts.P,$(basename $(cpp))),$(cpp)))
840$(call track-src-file-gen,$(vts_src),$(vts_gen_cpp))
841
842$(vts_gen_cpp) : PRIVATE_MODULE := $(LOCAL_MODULE)
843$(vts_gen_cpp) : PRIVATE_HEADER_OUTPUT_DIR := $(vts_gen_include_root)
844$(vts_gen_cpp) : PRIVATE_VTS_FLAGS := $(addprefix -I,$(LOCAL_VTS_INCLUDES))
845
846# Add generated headers to include paths.
847my_c_includes += $(vts_gen_include_root)
848my_export_c_include_dirs += $(vts_gen_include_root)
849# Pick up the generated C++ files later for transformation to .o files.
850my_generated_sources += $(vts_gen_cpp)
851
852endif # $(vts_src) non-empty
853
854###########################################################
Ying Wangf0ebe162016-01-11 16:28:45 -0800855## YACC: Compile .y/.yy files to .c/.cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800856###########################################################
857
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000858y_yacc_sources := $(filter %.y,$(my_src_files))
Ying Wangf0ebe162016-01-11 16:28:45 -0800859y_yacc_cs := $(addprefix \
860 $(intermediates)/,$(y_yacc_sources:.y=.c))
861ifneq ($(y_yacc_cs),)
862$(y_yacc_cs): $(intermediates)/%.c: \
Shinichiro Hamajib708bc52016-04-05 20:12:48 +0900863 $(TOPDIR)$(LOCAL_PATH)/%.y $(BISON) $(BISON_DATA) \
Ying Wangf0ebe162016-01-11 16:28:45 -0800864 $(my_additional_dependencies)
865 $(call transform-y-to-c-or-cpp)
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800866$(call track-src-file-gen,$(y_yacc_sources),$(y_yacc_cs))
Ying Wangf0ebe162016-01-11 16:28:45 -0800867
868my_generated_sources += $(y_yacc_cs)
869endif
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000870
871yy_yacc_sources := $(filter %.yy,$(my_src_files))
872yy_yacc_cpps := $(addprefix \
873 $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION)))
Ying Wangf0ebe162016-01-11 16:28:45 -0800874ifneq ($(yy_yacc_cpps),)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000875$(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Shinichiro Hamajib708bc52016-04-05 20:12:48 +0900876 $(TOPDIR)$(LOCAL_PATH)/%.yy $(BISON) $(BISON_DATA) \
Ying Wangf0ebe162016-01-11 16:28:45 -0800877 $(my_additional_dependencies)
878 $(call transform-y-to-c-or-cpp)
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800879$(call track-src-file-gen,$(yy_yacc_sources),$(yy_yacc_cpps))
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000880
Ying Wangf0ebe162016-01-11 16:28:45 -0800881my_generated_sources += $(yy_yacc_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800882endif
883
884###########################################################
Ying Wangf0ebe162016-01-11 16:28:45 -0800885## LEX: Compile .l/.ll files to .c/.cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800886###########################################################
887
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000888l_lex_sources := $(filter %.l,$(my_src_files))
Ying Wangf0ebe162016-01-11 16:28:45 -0800889l_lex_cs := $(addprefix \
890 $(intermediates)/,$(l_lex_sources:.l=.c))
891ifneq ($(l_lex_cs),)
892$(l_lex_cs): $(intermediates)/%.c: \
893 $(TOPDIR)$(LOCAL_PATH)/%.l
894 $(transform-l-to-c-or-cpp)
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800895$(call track-src-file-gen,$(l_lex_sources),$(l_lex_cs))
Ying Wangf0ebe162016-01-11 16:28:45 -0800896
897my_generated_sources += $(l_lex_cs)
898endif
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000899
900ll_lex_sources := $(filter %.ll,$(my_src_files))
901ll_lex_cpps := $(addprefix \
902 $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION)))
Ying Wangf0ebe162016-01-11 16:28:45 -0800903ifneq ($(ll_lex_cpps),)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000904$(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
905 $(TOPDIR)$(LOCAL_PATH)/%.ll
Ying Wangf0ebe162016-01-11 16:28:45 -0800906 $(transform-l-to-c-or-cpp)
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800907$(call track-src-file-gen,$(ll_lex_sources),$(ll_lex_cpps))
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000908
Ying Wangf0ebe162016-01-11 16:28:45 -0800909my_generated_sources += $(ll_lex_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800910endif
911
912###########################################################
913## C++: Compile .cpp files to .o.
914###########################################################
915
Jeff Browne33ba4c2011-07-11 22:11:46 -0700916# we also do this on host modules, even though
The Android Open Source Project88b60792009-03-03 19:28:42 -0800917# it's not really arm, because there are files that are shared.
Ying Wangfb22a422015-03-10 18:03:11 -0700918cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(my_src_files)))
919dotdot_arm_sources := $(filter ../%,$(cpp_arm_sources))
920cpp_arm_sources := $(filter-out ../%,$(cpp_arm_sources))
921cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800922$(call track-src-file-obj,$(patsubst %,%.arm,$(cpp_arm_sources)),$(cpp_arm_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800923
Ying Wangfb22a422015-03-10 18:03:11 -0700924# For source files starting with ../, we remove all the ../ in the object file path,
925# to avoid object file escaping the intermediate directory.
926dotdot_arm_objects :=
927$(foreach s,$(dotdot_arm_sources),\
928 $(eval $(call compile-dotdot-cpp-file,$(s),\
Ying Wang05f9f352016-05-05 20:02:08 -0700929 $(my_additional_dependencies),\
Ying Wangfb22a422015-03-10 18:03:11 -0700930 dotdot_arm_objects)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800931$(call track-src-file-obj,$(patsubst %,%.arm,$(dotdot_arm_sources)),$(dotdot_arm_objects))
Ying Wangfb22a422015-03-10 18:03:11 -0700932
933dotdot_sources := $(filter ../%$(LOCAL_CPP_EXTENSION),$(my_src_files))
934dotdot_objects :=
935$(foreach s,$(dotdot_sources),\
936 $(eval $(call compile-dotdot-cpp-file,$(s),\
Ying Wang05f9f352016-05-05 20:02:08 -0700937 $(my_additional_dependencies),\
Ying Wangfb22a422015-03-10 18:03:11 -0700938 dotdot_objects)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800939$(call track-src-file-obj,$(dotdot_sources),$(dotdot_objects))
Ying Wangfb22a422015-03-10 18:03:11 -0700940
941cpp_normal_sources := $(filter-out ../%,$(filter %$(LOCAL_CPP_EXTENSION),$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800942cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800943$(call track-src-file-obj,$(cpp_normal_sources),$(cpp_normal_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800944
Ying Wangfb22a422015-03-10 18:03:11 -0700945$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
946$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
947$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
948$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800949
950cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects)
951
952ifneq ($(strip $(cpp_objects)),)
953$(cpp_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700954 $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800955 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800956 $(transform-$(PRIVATE_HOST)cpp-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +0900957$(call include-depfiles-for-objs, $(cpp_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800958endif
959
Ying Wangfb22a422015-03-10 18:03:11 -0700960cpp_objects += $(dotdot_arm_objects) $(dotdot_objects)
961
The Android Open Source Project88b60792009-03-03 19:28:42 -0800962###########################################################
963## C++: Compile generated .cpp files to .o.
964###########################################################
965
Ying Wangec6d6262014-01-16 16:21:03 -0800966gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800967gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800968$(call track-gen-file-obj,$(gen_cpp_sources),$(gen_cpp_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800969
970ifneq ($(strip $(gen_cpp_objects)),)
971# Compile all generated files as thumb.
972# TODO: support compiling certain generated files as arm.
973$(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
974$(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400975$(gen_cpp_objects): $(intermediates)/%.o: \
Ying Wang05f9f352016-05-05 20:02:08 -0700976 $(intermediates)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800977 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800978 $(transform-$(PRIVATE_HOST)cpp-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +0900979$(call include-depfiles-for-objs, $(gen_cpp_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800980endif
981
982###########################################################
983## S: Compile generated .S and .s files to .o.
984###########################################################
985
Ying Wangec6d6262014-01-16 16:21:03 -0800986gen_S_sources := $(filter %.S,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800987gen_S_objects := $(gen_S_sources:%.S=%.o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800988$(call track-gen-file-obj,$(gen_S_sources),$(gen_S_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800989
990ifneq ($(strip $(gen_S_sources)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400991$(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800992 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800993 $(transform-$(PRIVATE_HOST)s-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +0900994$(call include-depfiles-for-objs, $(gen_S_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800995endif
996
Ying Wangec6d6262014-01-16 16:21:03 -0800997gen_s_sources := $(filter %.s,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800998gen_s_objects := $(gen_s_sources:%.s=%.o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800999$(call track-gen-file-obj,$(gen_s_sources),$(gen_s_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001000
1001ifneq ($(strip $(gen_s_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001002$(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -08001003 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001004 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001005endif
1006
1007gen_asm_objects := $(gen_S_objects) $(gen_s_objects)
Dan Willemsen45d38c02016-01-15 16:38:46 -08001008$(gen_asm_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001009
1010###########################################################
Torne (Richard Coles)aace2022013-02-21 14:01:35 +00001011## o: Include generated .o files in output.
1012###########################################################
1013
Ying Wangec6d6262014-01-16 16:21:03 -08001014gen_o_objects := $(filter %.o,$(my_generated_sources))
Torne (Richard Coles)aace2022013-02-21 14:01:35 +00001015
1016###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001017## C: Compile .c files to .o.
1018###########################################################
1019
Ying Wangfb22a422015-03-10 18:03:11 -07001020c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files)))
1021dotdot_arm_sources := $(filter ../%,$(c_arm_sources))
1022c_arm_sources := $(filter-out ../%,$(c_arm_sources))
1023c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001024$(call track-src-file-obj,$(patsubst %,%.arm,$(c_arm_sources)),$(c_arm_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001025
Ying Wangfb22a422015-03-10 18:03:11 -07001026# For source files starting with ../, we remove all the ../ in the object file path,
1027# to avoid object file escaping the intermediate directory.
1028dotdot_arm_objects :=
1029$(foreach s,$(dotdot_arm_sources),\
1030 $(eval $(call compile-dotdot-c-file,$(s),\
Ying Wang05f9f352016-05-05 20:02:08 -07001031 $(my_additional_dependencies),\
Ying Wangfb22a422015-03-10 18:03:11 -07001032 dotdot_arm_objects)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001033$(call track-src-file-obj,$(patsubst %,%.arm,$(dotdot_arm_sources)),$(dotdot_arm_objects))
Ying Wangfb22a422015-03-10 18:03:11 -07001034
1035dotdot_sources := $(filter ../%.c, $(my_src_files))
1036dotdot_objects :=
1037$(foreach s, $(dotdot_sources),\
1038 $(eval $(call compile-dotdot-c-file,$(s),\
Ying Wang05f9f352016-05-05 20:02:08 -07001039 $(my_additional_dependencies),\
Ying Wangfb22a422015-03-10 18:03:11 -07001040 dotdot_objects)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001041$(call track-src-file-obj,$(dotdot_sources),$(dotdot_objects))
Ying Wangfb22a422015-03-10 18:03:11 -07001042
1043c_normal_sources := $(filter-out ../%,$(filter %.c,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001044c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001045$(call track-src-file-obj,$(c_normal_sources),$(c_normal_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001046
Ying Wangfb22a422015-03-10 18:03:11 -07001047$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
1048$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
1049$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
1050$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001051
1052c_objects := $(c_arm_objects) $(c_normal_objects)
1053
1054ifneq ($(strip $(c_objects)),)
Ying Wang05f9f352016-05-05 20:02:08 -07001055$(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c \
Dan Albert954b5bd2014-11-08 22:20:03 -08001056 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001057 $(transform-$(PRIVATE_HOST)c-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001058$(call include-depfiles-for-objs, $(c_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001059endif
1060
Ying Wangfb22a422015-03-10 18:03:11 -07001061c_objects += $(dotdot_arm_objects) $(dotdot_objects)
1062
The Android Open Source Project88b60792009-03-03 19:28:42 -08001063###########################################################
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001064## C: Compile generated .c files to .o.
1065###########################################################
1066
Ying Wangec6d6262014-01-16 16:21:03 -08001067gen_c_sources := $(filter %.c,$(my_generated_sources))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001068gen_c_objects := $(gen_c_sources:%.c=%.o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001069$(call track-gen-file-obj,$(gen_c_sources),$(gen_c_objects))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001070
1071ifneq ($(strip $(gen_c_objects)),)
1072# Compile all generated files as thumb.
1073# TODO: support compiling certain generated files as arm.
1074$(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
1075$(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wang05f9f352016-05-05 20:02:08 -07001076$(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c \
Dan Albert954b5bd2014-11-08 22:20:03 -08001077 $(my_additional_dependencies)
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001078 $(transform-$(PRIVATE_HOST)c-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001079$(call include-depfiles-for-objs, $(gen_c_objects))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001080endif
1081
1082###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001083## ObjC: Compile .m files to .o
1084###########################################################
1085
Ying Wangb8e01852014-01-23 15:09:04 -08001086objc_sources := $(filter %.m,$(my_src_files))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001087objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o))
Dan Willemsen62f2e562016-02-01 18:55:23 -08001088$(call track-src-file-obj,$(objc_sources),$(objc_objects))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001089
1090ifneq ($(strip $(objc_objects)),)
Ying Wang05f9f352016-05-05 20:02:08 -07001091$(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m \
Dan Albert954b5bd2014-11-08 22:20:03 -08001092 $(my_additional_dependencies)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001093 $(transform-$(PRIVATE_HOST)m-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001094$(call include-depfiles-for-objs, $(objc_objects))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001095endif
1096
1097###########################################################
Scott James Remnantdd86e5a2015-09-17 15:40:49 -07001098## ObjC++: Compile .mm files to .o
1099###########################################################
1100
1101objcpp_sources := $(filter %.mm,$(my_src_files))
1102objcpp_objects := $(addprefix $(intermediates)/,$(objcpp_sources:.mm=.o))
Dan Willemsen62f2e562016-02-01 18:55:23 -08001103$(call track-src-file-obj,$(objcpp_sources),$(objcpp_objects))
Scott James Remnantdd86e5a2015-09-17 15:40:49 -07001104
1105ifneq ($(strip $(objcpp_objects)),)
Ying Wang05f9f352016-05-05 20:02:08 -07001106$(objcpp_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.mm \
Scott James Remnantdd86e5a2015-09-17 15:40:49 -07001107 $(my_additional_dependencies)
1108 $(transform-$(PRIVATE_HOST)mm-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001109$(call include-depfiles-for-objs, $(objcpp_objects))
Scott James Remnantdd86e5a2015-09-17 15:40:49 -07001110endif
1111
1112###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001113## AS: Compile .S files to .o.
1114###########################################################
1115
Ying Wangb8e01852014-01-23 15:09:04 -08001116asm_sources_S := $(filter %.S,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -07001117dotdot_sources := $(filter ../%,$(asm_sources_S))
1118asm_sources_S := $(filter-out ../%,$(asm_sources_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001119asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001120$(call track-src-file-obj,$(asm_sources_S),$(asm_objects_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001121
Ying Wangfb22a422015-03-10 18:03:11 -07001122dotdot_objects_S :=
1123$(foreach s,$(dotdot_sources),\
1124 $(eval $(call compile-dotdot-s-file,$(s),\
1125 $(my_additional_dependencies),\
1126 dotdot_objects_S)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001127$(call track-src-file-obj,$(dotdot_sources),$(dotdot_objects_S))
Ying Wangfb22a422015-03-10 18:03:11 -07001128
The Android Open Source Project88b60792009-03-03 19:28:42 -08001129ifneq ($(strip $(asm_objects_S)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001130$(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -08001131 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001132 $(transform-$(PRIVATE_HOST)s-to-o)
Shinichiro Hamaji72904772016-03-16 06:40:04 +09001133$(call include-depfiles-for-objs, $(asm_objects_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001134endif
1135
Ying Wangb8e01852014-01-23 15:09:04 -08001136asm_sources_s := $(filter %.s,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -07001137dotdot_sources := $(filter ../%,$(asm_sources_s))
1138asm_sources_s := $(filter-out ../%,$(asm_sources_s))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001139asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001140$(call track-src-file-obj,$(asm_sources_s),$(asm_objects_s))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001141
Ying Wangfb22a422015-03-10 18:03:11 -07001142dotdot_objects_s :=
1143$(foreach s,$(dotdot_sources),\
1144 $(eval $(call compile-dotdot-s-file-no-deps,$(s),\
1145 $(my_additional_dependencies),\
1146 dotdot_objects_s)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001147$(call track-src-file-obj,$(dotdot_sources),$(dotdot_objects_s))
Ying Wangfb22a422015-03-10 18:03:11 -07001148
The Android Open Source Project88b60792009-03-03 19:28:42 -08001149ifneq ($(strip $(asm_objects_s)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001150$(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -08001151 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001152 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001153endif
1154
Ying Wangfb22a422015-03-10 18:03:11 -07001155asm_objects := $(dotdot_objects_S) $(dotdot_objects_s) $(asm_objects_S) $(asm_objects_s)
Dan Willemsen45d38c02016-01-15 16:38:46 -08001156$(asm_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001157
1158
Ying Wangfe1e5c32015-03-09 18:57:40 -07001159# .asm for x86/x86_64 needs to be compiled with yasm.
Ying Wang7b913ce2014-06-05 19:05:47 -07001160asm_sources_asm := $(filter %.asm,$(my_src_files))
1161ifneq ($(strip $(asm_sources_asm)),)
1162asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o))
1163$(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \
Dan Albert954b5bd2014-11-08 22:20:03 -08001164 $(my_additional_dependencies)
Ying Wang7b913ce2014-06-05 19:05:47 -07001165 $(transform-asm-to-o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001166$(call track-src-file-obj,$(asm_sources_asm),$(asm_objects_asm))
Ying Wang7b913ce2014-06-05 19:05:47 -07001167
1168asm_objects += $(asm_objects_asm)
1169endif
Ying Wang7b913ce2014-06-05 19:05:47 -07001170
Jeff Davidson680f0712015-01-08 18:25:30 -08001171
Dan Willemsen6731b492016-06-07 16:55:57 -07001172####################################################
1173## For NDK-built libraries, move LOCAL_SHARED_LIBRARY
1174## references to my_ldlibs, so that we use the NDK
1175## prebuilt library and headers for linking.
1176####################################################
1177ifndef LOCAL_IS_HOST_MODULE
1178my_allowed_ldlibs :=
1179ifdef LOCAL_SDK_VERSION
1180 my_ndk_shared_libraries := $(filter $(addprefix lib,$(NDK_PREBUILT_SHARED_LIBRARIES)),$(my_shared_libraries))
1181 my_shared_libraries := $(filter-out $(my_ndk_shared_libraries),$(my_shared_libraries))
1182 my_ldlibs += $(patsubst lib%,-l%,$(my_ndk_shared_libraries))
1183 my_ndk_shared_libraries :=
1184 my_allowed_ldlibs := $(addprefix -l,$(NDK_PREBUILT_SHARED_LIBRARIES))
1185endif
1186
1187# Sort ldlibs and ldflags between -l and other linker flags
1188# We'll do this again later, since there are still changes happening, but that's fine.
1189my_ldlib_flags := $(my_ldflags) $(my_ldlibs)
1190my_ldlibs := $(filter -l%,$(my_ldlib_flags))
1191my_ldflags := $(filter-out -l%,$(my_ldlib_flags))
1192my_ldlib_flags :=
1193
1194# Move other ldlibs back to shared libraries
1195my_shared_libraries += $(patsubst -l%,lib%,$(filter-out $(my_allowed_ldlibs),$(my_ldlibs)))
1196my_ldlibs := $(filter $(my_allowed_ldlibs),$(my_ldlibs))
1197endif
1198
1199
Jeff Davidson680f0712015-01-08 18:25:30 -08001200##########################################################
1201## Set up installed module dependency
1202## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for
1203## they may cusomize their install path with LOCAL_MODULE_PATH
1204##########################################################
1205# Get the list of INSTALLED libraries as module names.
1206ifdef LOCAL_SDK_VERSION
1207 installed_shared_library_module_names := \
1208 $(my_shared_libraries)
1209else
1210 installed_shared_library_module_names := \
1211 $(my_shared_libraries) $(my_system_shared_libraries)
1212endif
1213
1214# The real dependency will be added after all Android.mks are loaded and the install paths
1215# of the shared libraries are determined.
1216ifdef LOCAL_INSTALLED_MODULE
1217ifdef installed_shared_library_module_names
1218$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
1219 $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names)))
1220endif
1221endif
1222
1223
Ying Wang5f074802011-11-08 09:31:21 -08001224####################################################
1225## Import includes
1226####################################################
1227import_includes := $(intermediates)/import_includes
1228import_includes_deps := $(strip \
1229 $(foreach l, $(installed_shared_library_module_names), \
Dan Willemsen057aaea2015-08-14 12:59:50 -07001230 $(call intermediates-dir-for,SHARED_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/export_includes) \
Colin Cross90353fe2014-02-04 14:53:25 -08001231 $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \
Dan Willemsen057aaea2015-08-14 12:59:50 -07001232 $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/export_includes))
Ying Wang14d02a32015-01-22 15:44:04 -08001233$(import_includes): PRIVATE_IMPORT_EXPORT_INCLUDES := $(import_includes_deps)
Dan Willemsen1c6dc5b2016-01-06 14:28:36 -08001234$(import_includes) : $(import_includes_deps)
Ying Wang5f074802011-11-08 09:31:21 -08001235 @echo Import includes file: $@
1236 $(hide) mkdir -p $(dir $@) && rm -f $@
1237ifdef import_includes_deps
Ying Wang14d02a32015-01-22 15:44:04 -08001238 $(hide) for f in $(PRIVATE_IMPORT_EXPORT_INCLUDES); do \
Ying Wang5f074802011-11-08 09:31:21 -08001239 cat $$f >> $@; \
1240 done
1241else
1242 $(hide) touch $@
1243endif
1244
Dan Willemsenb097fbe2016-06-07 14:25:14 -07001245
1246####################################################
1247## Verify that NDK-built libraries only link against
1248## other NDK-built libraries
1249####################################################
1250
1251my_link_type := $(intermediates)/link_type
1252ifdef LOCAL_SDK_VERSION
1253$(my_link_type): PRIVATE_LINK_TYPE := ndk
1254$(my_link_type): PRIVATE_ALLOWED_TYPES := ndk
1255else
1256$(my_link_type): PRIVATE_LINK_TYPE := platform
1257$(my_link_type): PRIVATE_ALLOWED_TYPES := (ndk|platform)
1258endif
1259my_link_type_deps := $(strip \
1260 $(foreach l,$(my_whole_static_libraries) $(my_static_libraries), \
1261 $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/link_type))
1262ifneq ($(LOCAL_MODULE_CLASS),STATIC_LIBRARIES)
1263my_link_type_deps += $(strip \
1264 $(foreach l,$(my_shared_libraries), \
1265 $(call intermediates-dir-for,SHARED_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/link_type))
1266endif
1267$(my_link_type): PRIVATE_DEPS := $(my_link_type_deps)
1268$(my_link_type): PRIVATE_MODULE := $(LOCAL_MODULE)
1269$(my_link_type): PRIVATE_MAKEFILE := $(LOCAL_MODULE_MAKEFILE)
1270$(my_link_type): $(my_link_type_deps)
1271 @echo Check module type: $@
1272 $(hide) mkdir -p $(dir $@) && rm -f $@
1273ifdef my_link_type_deps
1274 $(hide) for f in $(PRIVATE_DEPS); do \
1275 grep -qE '^$(PRIVATE_ALLOWED_TYPES)$$' $$f || \
1276 $(call echo-warning,"$(PRIVATE_MAKEFILE): $(PRIVATE_MODULE) ($(PRIVATE_LINK_TYPE)) should not link to $$(basename $${f%_intermediates/link_type}) ($$(cat $$f))"); \
1277 done
1278endif
1279 $(hide) echo $(PRIVATE_LINK_TYPE) >$@
1280
1281
The Android Open Source Project88b60792009-03-03 19:28:42 -08001282###########################################################
1283## Common object handling.
1284###########################################################
1285
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001286my_unused_src_files := $(filter-out $(logtags_sources) $(my_tracked_src_files),$(my_src_files) $(my_gen_src_files))
1287ifneq ($(my_unused_src_files),)
1288 $(warning $(LOCAL_MODULE_MAKEFILE): $(LOCAL_MODULE): Unused source files: $(my_unused_src_files))
1289endif
1290
The Android Open Source Project88b60792009-03-03 19:28:42 -08001291# some rules depend on asm_objects being first. If your code depends on
1292# being first, it's reasonable to require it to be assembly
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001293normal_objects := \
Ying Wangdfbe79b2012-03-22 11:26:22 -07001294 $(asm_objects) \
1295 $(cpp_objects) \
1296 $(gen_cpp_objects) \
1297 $(gen_asm_objects) \
1298 $(c_objects) \
1299 $(gen_c_objects) \
1300 $(objc_objects) \
Ying Wang05f9f352016-05-05 20:02:08 -07001301 $(objcpp_objects)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001302
1303new_order_normal_objects := $(foreach f,$(my_src_files),$(my_src_file_obj_$(f)))
1304new_order_normal_objects += $(foreach f,$(my_gen_src_files),$(my_src_file_obj_$(f)))
1305
1306ifneq ($(sort $(normal_objects)),$(sort $(new_order_normal_objects)))
1307$(warning $(LOCAL_MODULE_MAKEFILE) Internal build system warning: New object list does not match old)
1308$(info Only in old: $(filter-out $(new_order_normal_objects),$(sort $(normal_objects))))
1309$(info Only in new: $(filter-out $(normal_objects),$(sort $(new_order_normal_objects))))
1310endif
1311
1312ifeq ($(BINARY_OBJECTS_ORDER),soong)
1313normal_objects := $(new_order_normal_objects)
1314endif
1315
1316normal_objects += $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES))
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001317
1318all_objects := $(normal_objects) $(gen_o_objects)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001319
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001320# Cleanup file tracking
1321$(foreach f,$(my_tracked_gen_files),$(eval my_src_file_gen_$(s):=))
1322my_tracked_gen_files :=
1323$(foreach f,$(my_tracked_src_files),$(eval my_src_file_obj_$(s):=))
1324my_tracked_src_files :=
1325
Colin Cross2d206702014-02-13 13:41:52 -08001326my_c_includes += $(TOPDIR)$(LOCAL_PATH) $(intermediates) $(generated_sources_dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001327
Ying Wang848020f2012-08-14 10:13:16 -07001328ifndef LOCAL_SDK_VERSION
Ying Wang6ef65192014-01-15 16:02:16 -08001329 my_c_includes += $(JNI_H_INCLUDE)
Ying Wangbce4b752010-07-22 15:51:56 -07001330endif
1331
Dan Willemsen062e30b2016-05-24 13:06:07 -07001332my_outside_includes := $(filter-out $(OUT_DIR)/%,$(filter /%,$(my_c_includes)))
1333ifneq ($(my_outside_includes),)
1334$(error $(LOCAL_MODULE_MAKEFILE): $(LOCAL_MODULE): C_INCLUDES must be under the source or output directories: $(my_outside_includes))
1335endif
1336
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001337# all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES;
1338# use normal_objects here to avoid creating circular dependencies. This assumes
1339# that custom build rules which generate .o files don't consume other generated
1340# sources as input (or if they do they take care of that dependency themselves).
Ying Wangec6d6262014-01-16 16:21:03 -08001341$(normal_objects) : | $(my_generated_sources)
Colin Cross6b9bddd2015-11-30 17:33:26 -08001342$(all_objects) : $(import_includes)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001343ALL_C_CPP_ETC_OBJECTS += $(all_objects)
1344
The Android Open Source Project88b60792009-03-03 19:28:42 -08001345
1346###########################################################
1347# Standard library handling.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001348###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001349
1350###########################################################
1351# The list of libraries that this module will link against are in
1352# these variables. Each is a list of bare module names like "libc libm".
1353#
1354# LOCAL_SHARED_LIBRARIES
1355# LOCAL_STATIC_LIBRARIES
1356# LOCAL_WHOLE_STATIC_LIBRARIES
1357#
1358# We need to convert the bare names into the dependencies that
1359# we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE.
1360# LOCAL_BUILT_MODULE should depend on the BUILT versions of the
1361# libraries, so that simply building this module doesn't force
1362# an install of a library. Similarly, LOCAL_INSTALLED_MODULE
1363# should depend on the INSTALLED versions of the libraries so
1364# that they get installed when this module does.
1365###########################################################
1366# NOTE:
1367# WHOLE_STATIC_LIBRARIES are libraries that are pulled into the
1368# module without leaving anything out, which is useful for turning
1369# a collection of .a files into a .so file. Linking against a
1370# normal STATIC_LIBRARY will only pull in code/symbols that are
1371# referenced by the module. (see gcc/ld's --whole-archive option)
1372###########################################################
1373
1374# Get the list of BUILT libraries, which are under
1375# various intermediates directories.
1376so_suffix := $($(my_prefix)SHLIB_SUFFIX)
1377a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX)
1378
Ying Wang848020f2012-08-14 10:13:16 -07001379ifdef LOCAL_SDK_VERSION
The Android Open Source Project88b60792009-03-03 19:28:42 -08001380built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001381 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001382 $(addsuffix $(so_suffix), \
Ying Wang6ef65192014-01-15 16:02:16 -08001383 $(my_shared_libraries)))
Ying Wangc01f2dc2015-12-15 10:00:19 -08001384built_shared_library_deps := $(addsuffix .toc, $(built_shared_libraries))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001385
Ying Wangd8d37212014-03-21 16:17:04 -07001386# Add the NDK libraries to the built module dependency
Ying Wangcce4c972011-03-03 18:53:53 -08001387my_system_shared_libraries_fullpath := \
1388 $(my_ndk_stl_shared_lib_fullpath) \
Andrew Hsieh140761af02014-04-25 23:47:10 -07001389 $(addprefix $(my_ndk_sysroot_lib)/, \
Ying Wangd8d37212014-03-21 16:17:04 -07001390 $(addsuffix $(so_suffix), $(my_system_shared_libraries)))
Ying Wang1a081002010-07-13 14:55:47 -07001391
1392built_shared_libraries += $(my_system_shared_libraries_fullpath)
Ying Wang1a081002010-07-13 14:55:47 -07001393else
Ying Wang1a081002010-07-13 14:55:47 -07001394built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001395 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
Ying Wang1a081002010-07-13 14:55:47 -07001396 $(addsuffix $(so_suffix), \
Ying Wangd8d37212014-03-21 16:17:04 -07001397 $(installed_shared_library_module_names)))
Ying Wangc01f2dc2015-12-15 10:00:19 -08001398ifdef LOCAL_IS_HOST_MODULE
1399# Disable .toc optimization for host modules: we may run the host binaries during the build process
1400# and the libraries' implementation matters.
1401built_shared_library_deps := $(built_shared_libraries)
1402else
1403built_shared_library_deps := $(addsuffix .toc, $(built_shared_libraries))
1404endif
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +09001405my_system_shared_libraries_fullpath :=
Ying Wang1a081002010-07-13 14:55:47 -07001406endif
1407
The Android Open Source Project88b60792009-03-03 19:28:42 -08001408built_static_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001409 $(foreach lib,$(my_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001410 $(call intermediates-dir-for, \
Dan Willemsen057aaea2015-08-14 12:59:50 -07001411 STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/$(lib)$(a_suffix))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001412
Ying Wang848020f2012-08-14 10:13:16 -07001413ifdef LOCAL_SDK_VERSION
Ying Wangcce4c972011-03-03 18:53:53 -08001414built_static_libraries += $(my_ndk_stl_static_lib)
1415endif
1416
The Android Open Source Project88b60792009-03-03 19:28:42 -08001417built_whole_libraries := \
Colin Cross90353fe2014-02-04 14:53:25 -08001418 $(foreach lib,$(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001419 $(call intermediates-dir-for, \
Dan Willemsen057aaea2015-08-14 12:59:50 -07001420 STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/$(lib)$(a_suffix))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001421
The Android Open Source Project88b60792009-03-03 19:28:42 -08001422# We don't care about installed static libraries, since the
1423# libraries have already been linked into the module at that point.
1424# We do, however, care about the NOTICE files for any static
Steve Blockd14d3b42012-03-01 11:34:41 +00001425# libraries that we use. (see notice_files.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001426
1427installed_static_library_notice_file_targets := \
Colin Cross90353fe2014-02-04 14:53:25 -08001428 $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001429 NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib))
1430
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001431# Default is -fno-rtti.
Doug Kwane3c3c6d2011-06-07 10:55:48 -07001432ifeq ($(strip $(LOCAL_RTTI_FLAG)),)
1433LOCAL_RTTI_FLAG := -fno-rtti
1434endif
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001435
The Android Open Source Project88b60792009-03-03 19:28:42 -08001436###########################################################
1437# Rule-specific variable definitions
1438###########################################################
Logan Chiene6f65432013-12-10 19:07:41 +08001439
Ying Wang824344a2014-05-27 13:03:36 -07001440ifeq ($(my_clang),true)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001441my_cflags += $(LOCAL_CLANG_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -08001442my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS)
Dan Albertd2fa96d2014-11-28 14:00:12 -08001443my_cppflags += $(LOCAL_CLANG_CPPFLAGS)
Dan Albertd1600412015-06-10 16:33:43 -07001444my_cflags_no_override += $(GLOBAL_CLANG_CFLAGS_NO_OVERRIDE)
1445my_cppflags_no_override += $(GLOBAL_CLANG_CPPFLAGS_NO_OVERRIDE)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001446my_asflags += $(LOCAL_CLANG_ASFLAGS)
1447my_ldflags += $(LOCAL_CLANG_LDFLAGS)
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -07001448my_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 -08001449my_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 -07001450my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix))
1451my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix))
1452my_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 -07001453my_cflags := $(call convert-to-clang-flags,$(my_cflags))
1454my_cppflags := $(call convert-to-clang-flags,$(my_cppflags))
1455my_asflags := $(call convert-to-clang-flags,$(my_asflags))
1456my_ldflags := $(call convert-to-clang-flags,$(my_ldflags))
Dan Austin75e7af12016-04-06 11:18:30 -07001457else
1458# gcc does not handle hidden functions in a manner compatible with LLVM libcxx
1459# see b/27908145
1460my_cflags += -Wno-attributes
Logan Chiene6f65432013-12-10 19:07:41 +08001461endif
1462
Ying Wang45d01432014-10-28 14:50:59 -07001463ifeq ($(my_fdo_build), true)
1464 my_cflags := $(patsubst -Os,-O2,$(my_cflags))
1465 fdo_incompatible_flags := -fno-early-inlining -finline-limit=%
1466 my_cflags := $(filter-out $(fdo_incompatible_flags),$(my_cflags))
Dehao Chen295a6d22014-09-19 10:18:12 -07001467endif
1468
Dan Albertdf3fd1d2015-08-12 14:54:16 -07001469# No one should ever use this flag. On GCC it's mere presence will disable all
1470# warnings, even those that are specified after it (contrary to typical warning
1471# flag behavior). This circumvents CFLAGS_NO_OVERRIDE from forcibly enabling the
1472# warnings that are *always* bugs.
1473my_illegal_flags := -w
1474my_cflags := $(filter-out $(my_illegal_flags),$(my_cflags))
1475my_cppflags := $(filter-out $(my_illegal_flags),$(my_cppflags))
1476my_conlyflags := $(filter-out $(my_illegal_flags),$(my_conlyflags))
1477
Dan Albert5ae31dd2016-01-29 16:51:51 -08001478# We can enforce some rules more strictly in the code we own. my_strict
1479# indicates if this is code that we can be stricter with. If we have rules that
1480# we want to apply to *our* code (but maybe can't for vendor/device specific
1481# things), we could extend this to be a ternary value.
1482my_strict := true
1483ifneq ($(filter external/%,$(LOCAL_PATH)),)
1484 my_strict := false
1485endif
1486
1487# Can be used to make some annotations stricter for code we can fix (such as
1488# when we mark functions as deprecated).
1489ifeq ($(my_strict),true)
1490 my_cflags += -DANDROID_STRICT
1491endif
1492
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -07001493# Disable clang-tidy if it is not found.
1494ifeq ($(PATH_TO_CLANG_TIDY),)
1495 my_tidy_enabled := false
1496else
1497 # If LOCAL_TIDY is not defined, use global WITH_TIDY
1498 my_tidy_enabled := $(LOCAL_TIDY)
1499 ifeq ($(my_tidy_enabled),)
1500 my_tidy_enabled := $(WITH_TIDY)
1501 endif
1502endif
1503
1504# my_tidy_checks is empty if clang-tidy is disabled.
1505my_tidy_checks :=
1506my_tidy_flags :=
1507ifneq (,$(filter 1 true,$(my_tidy_enabled)))
1508 ifneq ($(my_clang),true)
1509 # Disable clang-tidy if clang is disabled.
1510 my_tidy_enabled := false
1511 else
1512 tidy_only: $(cpp_objects) $(c_objects)
1513 # Set up global default checks
1514 my_tidy_checks := $(WITH_TIDY_CHECKS)
1515 ifeq ($(my_tidy_checks),)
Chih-Hung Hsieh460171a2016-04-21 15:37:24 -07001516 my_tidy_checks := $(call default_global_tidy_checks,$(LOCAL_PATH))
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -07001517 endif
1518 # Append local clang-tidy checks.
1519 ifneq ($(LOCAL_TIDY_CHECKS),)
1520 my_tidy_checks := $(my_tidy_checks),$(LOCAL_TIDY_CHECKS)
1521 endif
1522 # Set up global default clang-tidy flags, which is none.
1523 my_tidy_flags := $(WITH_TIDY_FLAGS)
1524 # Use local clang-tidy flags if specified.
1525 ifneq ($(LOCAL_TIDY_FLAGS),)
1526 my_tidy_flags := $(LOCAL_TIDY_FLAGS)
1527 endif
Chih-Hung Hsieh870f0872016-06-02 15:20:05 -07001528 # If tidy flags are not specified, default to check all header files.
1529 ifeq ($(my_tidy_flags),)
1530 my_tidy_flags := -header-filter=.*
1531 endif
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -07001532 endif
1533endif
1534
Dan Willemsen6731b492016-06-07 16:55:57 -07001535# Move -l* entries from ldflags to ldlibs, and everything else to ldflags
1536my_ldlib_flags := $(my_ldflags) $(my_ldlibs)
1537my_ldlibs := $(filter -l%,$(my_ldlib_flags))
1538my_ldflags := $(filter-out -l%,$(my_ldlib_flags))
1539
1540# One last verification check for ldlibs
1541ifndef LOCAL_IS_HOST_MODULE
1542my_allowed_ldlibs :=
1543ifdef LOCAL_SDK_VERSION
1544 my_allowed_ldlibs := $(addprefix -l,$(NDK_PREBUILT_SHARED_LIBRARIES))
1545endif
1546
1547my_bad_ldlibs := $(filter-out $(my_allowed_ldlibs),$(my_ldlibs))
1548ifneq ($(my_bad_ldlibs),)
1549 $(error $(LOCAL_MODULE_MAKEFILE): $(LOCAL_MODULE): Bad LOCAL_LDLIBS entries: $(my_bad_ldlibs))
1550endif
1551endif
1552
The Android Open Source Project88b60792009-03-03 19:28:42 -08001553$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -08001554$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags)
Stephen Hines15680292014-11-26 00:53:46 -08001555$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(my_conlyflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001556$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags)
1557$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags)
Dan Albertd1600412015-06-10 16:33:43 -07001558$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS_NO_OVERRIDE := $(my_cflags_no_override)
1559$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS_NO_OVERRIDE := $(my_cppflags_no_override)
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001560$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001561$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001562$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes)
Ying Wang5f074802011-11-08 09:31:21 -08001563$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes)
Ying Wang6ef65192014-01-15 16:02:16 -08001564$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags)
Dan Albertb05f2ca2014-09-12 14:46:57 -07001565$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs)
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -07001566$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TIDY_CHECKS := $(my_tidy_checks)
1567$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TIDY_FLAGS := $(my_tidy_flags)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001568
1569# this is really the way to get the files onto the command line instead
1570# of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work
1571$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries)
1572$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries)
1573$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries)
Ying Wang4aaa1a12016-03-22 18:23:13 -07001574$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(strip $(all_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001575
1576###########################################################
1577# Define library dependencies.
1578###########################################################
1579# all_libraries is used for the dependencies on LOCAL_BUILT_MODULE.
1580all_libraries := \
Ying Wangc01f2dc2015-12-15 10:00:19 -08001581 $(built_shared_library_deps) \
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +09001582 $(my_system_shared_libraries_fullpath) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001583 $(built_static_libraries) \
1584 $(built_whole_libraries)
1585
The Android Open Source Project88b60792009-03-03 19:28:42 -08001586# Also depend on the notice files for any static libraries that
1587# are linked into this module. This will force them to be installed
1588# when this module is.
1589$(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets)
Ying Wang5f074802011-11-08 09:31:21 -08001590
1591###########################################################
1592# Export includes
1593###########################################################
1594export_includes := $(intermediates)/export_includes
Ying Wangfaeb6932015-04-07 11:59:34 -07001595$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(my_export_c_include_dirs)
Christopher Wileyff1c3f22016-04-11 12:40:36 -07001596# Headers exported by whole static libraries are also exported by this library.
Dan Willemsena7808ac2016-03-04 12:40:25 -08001597export_include_deps := $(strip \
1598 $(foreach l,$(my_whole_static_libraries), \
1599 $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/export_includes))
Christopher Wileyff1c3f22016-04-11 12:40:36 -07001600# Re-export requested headers from shared libraries.
1601export_include_deps += $(strip \
1602 $(foreach l,$(LOCAL_EXPORT_SHARED_LIBRARY_HEADERS), \
1603 $(call intermediates-dir-for,SHARED_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/export_includes))
1604# Re-export requested headers from static libraries.
1605export_include_deps += $(strip \
1606 $(foreach l,$(LOCAL_EXPORT_STATIC_LIBRARY_HEADERS), \
1607 $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/export_includes))
Dan Willemsena7808ac2016-03-04 12:40:25 -08001608$(export_includes): PRIVATE_REEXPORTED_INCLUDES := $(export_include_deps)
Ying Wang05f9f352016-05-05 20:02:08 -07001609# By adding $(my_generated_sources) it makes sure the headers get generated
1610# before any dependent source files get compiled.
1611$(export_includes) : $(my_generated_sources) $(export_include_deps)
Ying Wang5f074802011-11-08 09:31:21 -08001612 @echo Export includes file: $< -- $@
Dan Willemsena7808ac2016-03-04 12:40:25 -08001613 $(hide) mkdir -p $(dir $@) && rm -f $@.tmp && touch $@.tmp
Ying Wangfaeb6932015-04-07 11:59:34 -07001614ifdef my_export_c_include_dirs
Ying Wang5f074802011-11-08 09:31:21 -08001615 $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
Colin Cross6b9bddd2015-11-30 17:33:26 -08001616 echo "-I $$d" >> $@.tmp; \
Ying Wang5f074802011-11-08 09:31:21 -08001617 done
Dan Willemsena7808ac2016-03-04 12:40:25 -08001618endif
1619ifdef export_include_deps
1620 $(hide) for f in $(PRIVATE_REEXPORTED_INCLUDES); do \
1621 cat $$f >> $@.tmp; \
1622 done
Ying Wang5f074802011-11-08 09:31:21 -08001623endif
Colin Cross6b9bddd2015-11-30 17:33:26 -08001624 $(hide) if cmp -s $@.tmp $@ ; then \
1625 rm $@.tmp ; \
1626 else \
1627 mv $@.tmp $@ ; \
1628 fi
Colin Cross6b9bddd2015-11-30 17:33:26 -08001629
1630# Kati adds restat=1 to ninja. GNU make does nothing for this.
1631.KATI_RESTAT: $(export_includes)
Ying Wang616e5962012-04-18 17:35:55 -07001632
1633# Make sure export_includes gets generated when you are running mm/mmm
Dan Willemsenb097fbe2016-06-07 14:25:14 -07001634$(LOCAL_BUILT_MODULE) : | $(export_includes) $(my_link_type)