blob: 28aa882dc2a895b2667c5bce31cae0af0e90a733 [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)
Colin Crossa4447e82015-09-28 16:26:00 -070056my_additional_dependencies := $(LOCAL_MODULE_MAKEFILE_DEP) $(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 Wangfe1bfe72012-08-14 11:08:03 -070069 ifdef LOCAL_NDK_VERSION
70 $(error $(LOCAL_PATH): LOCAL_NDK_VERSION is now retired.)
71 endif
Ying Wang1a081002010-07-13 14:55:47 -070072 ifdef LOCAL_IS_HOST_MODULE
Ian Rogers76a6dc32012-10-01 16:36:23 -070073 $(error $(LOCAL_PATH): LOCAL_SDK_VERSION cannot be used in host module)
Ying Wang1a081002010-07-13 14:55:47 -070074 endif
Ying Wang848020f2012-08-14 10:13:16 -070075 my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/sources
Andrew Hsieh140761af02014-04-25 23:47:10 -070076 my_ndk_sysroot := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
77 my_ndk_sysroot_include := $(my_ndk_sysroot)/usr/include
78 ifeq (x86_64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
79 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib64
Duane Sand1a074872014-11-08 15:25:18 -080080 else ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
81 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/libr6
Andrew Hsieh140761af02014-04-25 23:47:10 -070082 else
83 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib
84 endif
Ying Wangcce4c972011-03-03 18:53:53 -080085
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -070086 # The bionic linker now has support for packed relocations and gnu style
87 # hashes (which are much faster!), but shipping to older devices requires
88 # the old style hash and disabling packed relocations.
Dan Albertd3d894d2014-11-14 15:28:49 -080089 #ifeq ($(shell expr $(LOCAL_SDK_VERSION) >= FIRST_SUPPORTED_VERSION),0)
90 my_ldflags += -Wl,--hash-style=sysv
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -070091 LOCAL_PACK_MODULE_RELOCATIONS := false
Dan Albertd3d894d2014-11-14 15:28:49 -080092 #endif
93
Ying Wangcce4c972011-03-03 18:53:53 -080094 # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location.
95 # See ndk/docs/CPLUSPLUS-SUPPORT.html
96 my_ndk_stl_include_path :=
97 my_ndk_stl_shared_lib_fullpath :=
98 my_ndk_stl_shared_lib :=
99 my_ndk_stl_static_lib :=
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800100 my_ndk_stl_cppflags :=
Duane Sand1a074872014-11-08 15:25:18 -0800101 my_cpu_variant := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)
102 ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
103 my_cpu_variant := mips32r6
104 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800105 LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800106 ifeq (,$(LOCAL_NDK_STL_VARIANT))
107 LOCAL_NDK_STL_VARIANT := system
108 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800109 ifneq (1,$(words $(filter system stlport_static stlport_shared c++_static c++_shared gnustl_static, $(LOCAL_NDK_STL_VARIANT))))
Ying Wang848020f2012-08-14 10:13:16 -0700110 $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800111 endif
112 ifeq (system,$(LOCAL_NDK_STL_VARIANT))
113 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
114 # for "system" variant, the shared library exists in the system library and -lstdc++ is added by default.
115 else # LOCAL_NDK_STL_VARIANT is not system
116 ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
117 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
118 ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800119 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(my_cpu_variant)/libstlport_static.a
Ying Wangcce4c972011-03-03 18:53:53 -0800120 else
Duane Sand1a074872014-11-08 15:25:18 -0800121 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 -0800122 my_ndk_stl_shared_lib := -lstlport_shared
123 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800124 else # LOCAL_NDK_STL_VARIANT is not stlport_* either
125 ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
126 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include \
127 $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include \
128 $(my_ndk_source_root)/android/support/include
129 ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800130 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(my_cpu_variant)/libc++_static.a
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800131 else
Duane Sand1a074872014-11-08 15:25:18 -0800132 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 +0800133 my_ndk_stl_shared_lib := -lc++_shared
134 endif
135 my_ndk_stl_cppflags := -std=c++11
Ying Wangcce4c972011-03-03 18:53:53 -0800136 else
137 # LOCAL_NDK_STL_VARIANT is gnustl_static
Duane Sand1a074872014-11-08 15:25:18 -0800138 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 -0700139 $(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 -0800140 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/libs/$(my_cpu_variant)/libgnustl_static.a
Ying Wangcce4c972011-03-03 18:53:53 -0800141 endif
142 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800143 endif
Ying Wang1a081002010-07-13 14:55:47 -0700144endif
145
Dan Albert95994de2014-08-07 18:29:11 -0700146# MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
147# all code is position independent, and then those warnings get promoted to
148# errors.
Dan Willemsen057aaea2015-08-14 12:59:50 -0700149ifneq ($($(my_prefix)OS),windows)
Dan Albert4803ce22014-08-06 12:36:46 -0700150ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES)
151my_cflags += -fpie
152else
153my_cflags += -fPIC
154endif
Dan Albert95994de2014-08-07 18:29:11 -0700155endif
Dan Albert4803ce22014-08-06 12:36:46 -0700156
Dan Willemsen7a549852015-08-13 17:51:40 -0700157ifdef LOCAL_IS_HOST_MODULE
Dan Willemsen85ac8d22015-08-18 17:47:06 -0700158my_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 -0700159my_static_libraries += $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)OS))
160my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)OS))
161my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)OS))
162my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)OS))
163my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)OS))
164my_ldlibs += $(LOCAL_LDLIBS_$($(my_prefix)OS))
165my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)OS))
166my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)OS))
167my_generated_sources += $(LOCAL_GENERATED_SOURCES_$($(my_prefix)OS))
168endif
169
Ying Wang6feb6d52014-04-17 10:03:35 -0700170my_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 -0700171my_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 -0700172my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix))
173my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix))
174my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix))
175my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix))
176my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix))
177my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix))
178my_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 -0800179
Colin Crossa04abc82015-06-30 12:21:59 -0700180my_src_files := $(filter-out $(my_src_files_exclude),$(my_src_files))
181
Dan Albertdb905e72014-08-18 11:14:38 -0700182my_clang := $(strip $(LOCAL_CLANG))
Ying Wang824344a2014-05-27 13:03:36 -0700183ifdef LOCAL_CLANG_$(my_32_64_bit_suffix)
Dan Albertdb905e72014-08-18 11:14:38 -0700184my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix)))
Ying Wang824344a2014-05-27 13:03:36 -0700185endif
186ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Dan Albertdb905e72014-08-18 11:14:38 -0700187my_clang := $(strip $(LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Ying Wang824344a2014-05-27 13:03:36 -0700188endif
189
Tim Murray92d79cb2014-04-04 14:38:29 -0700190# clang is enabled by default for host builds
191# enable it unless we've specifically disabled clang above
192ifdef LOCAL_IS_HOST_MODULE
Dan Willemsen057aaea2015-08-14 12:59:50 -0700193 ifneq ($($(my_prefix)OS),windows)
Tim Murray5ca1dc12014-07-24 14:42:53 -0700194 ifeq ($(my_clang),)
195 my_clang := true
196 endif
197 endif
Dan Willemsen77288172015-09-09 15:45:21 -0700198# Add option to make clang the default for device build
199else ifeq ($(USE_CLANG_PLATFORM_BUILD),true)
200 ifeq ($(my_clang),)
201 my_clang := true
202 endif
203endif
204
Dan Albertc7d307d2015-07-29 15:13:57 -0700205my_cpp_std_version := -std=gnu++14
206ifdef LOCAL_SDK_VERSION
207 # The NDK handles this itself.
208 my_cpp_std_version :=
209endif
210
211ifdef LOCAL_IS_HOST_MODULE
212 ifneq ($(my_clang),true)
213 # The host GCC doesn't support C++14 (and is deprecated, so likely
214 # never will). Build these modules with C++11.
215 my_cpp_std_version := -std=gnu++11
216 endif
217endif
218
219my_cppflags := $(my_cpp_std_version) $(my_cppflags)
220
Tim Murray06659bc2014-08-13 11:53:07 -0700221
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800222# arch-specific static libraries go first so that generic ones can depend on them
Ying Wang6feb6d52014-04-17 10:03:35 -0700223my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries)
224my_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 -0800225
Ying Wang75e8fcb2014-10-07 13:03:29 -0700226include $(BUILD_SYSTEM)/cxx_stl_setup.mk
Ying Wangd90de322014-05-23 16:42:37 -0700227
Ying Wang285045b2013-08-13 12:35:10 -0700228# Add static HAL libraries
229ifdef LOCAL_HAL_STATIC_LIBRARIES
230$(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \
231 $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\
Ying Wang6ef65192014-01-15 16:02:16 -0800232 $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\
233 $(eval my_static_libraries += $(lib).default)))
Ying Wang285045b2013-08-13 12:35:10 -0700234b_lib :=
235endif
236
Nicolas Geoffrayb7c9f322015-09-25 13:54:09 +0100237ifneq ($(strip $(CUSTOM_$(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)LINKER)),)
238 my_linker := $(CUSTOM_$(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)LINKER)
239else
240 my_linker := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_LINKER)
241endif
Evgenii Stepanov8f5e67a2015-07-10 18:06:51 -0700242
Dan Albert4ae5d4b2014-10-31 16:23:08 -0700243include $(BUILD_SYSTEM)/config_sanitizers.mk
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400244
Shih-wei Liaoc8dfc162013-01-27 01:45:59 -0800245# Add in libcompiler_rt for all regular device builds
Dan Albert30a9c352015-04-09 14:41:06 -0700246ifeq (,$(LOCAL_SDK_VERSION)$(WITHOUT_LIBCOMPILER_RT))
Ying Wang6ef65192014-01-15 16:02:16 -0800247 my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES)
Stephen Hinesc72f3962012-06-11 14:53:34 -0700248endif
249
Jing Yu2dcc8062009-09-21 16:31:50 -0700250####################################################
251## Add FDO flags if FDO is turned on and supported
Dehao Chen295a6d22014-09-19 10:18:12 -0700252## Please note that we will do option filtering during FDO build.
253## i.e. Os->O2, remove -fno-early-inline and -finline-limit.
254##################################################################
Ying Wang45d01432014-10-28 14:50:59 -0700255my_fdo_build :=
256ifneq ($(filter true always, $(LOCAL_FDO_SUPPORT)),)
257 ifeq ($(BUILD_FDO_INSTRUMENT),true)
258 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_CFLAGS)
259 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_LDFLAGS)
260 my_fdo_build := true
261 else ifneq ($(filter true,$(BUILD_FDO_OPTIMIZE))$(filter always,$(LOCAL_FDO_SUPPORT)),)
262 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_OPTIMIZE_CFLAGS)
263 my_fdo_build := true
synergydev4a605762013-08-05 02:44:37 -0700264 endif
Shinichiro Hamaji09295a82015-09-24 17:51:20 +0900265 # Disable ccache (or other compiler wrapper) except gomacc, which
266 # can handle -fprofile-use properly.
267 my_cc_wrapper := $(filter $(GOMA_CC),$(my_cc_wrapper))
268 my_cxx_wrapper := $(filter $(GOMA_CC),$(my_cxx_wrapper))
Jing Yu2dcc8062009-09-21 16:31:50 -0700269endif
270
The Android Open Source Project88b60792009-03-03 19:28:42 -0800271###########################################################
Jim Huang20d1ba62010-10-14 16:15:56 +0800272## Explicitly declare assembly-only __ASSEMBLY__ macro for
273## assembly source
274###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800275my_asflags += -D__ASSEMBLY__
Jim Huang20d1ba62010-10-14 16:15:56 +0800276
Ying Wangd8d37212014-03-21 16:17:04 -0700277
Jim Huang20d1ba62010-10-14 16:15:56 +0800278###########################################################
Ying Wang1a081002010-07-13 14:55:47 -0700279## Define PRIVATE_ variables from global vars
280###########################################################
Ying Wang7fff9a12014-01-09 14:39:41 -0800281ifndef LOCAL_IS_HOST_MODULE
Ying Wang848020f2012-08-14 10:13:16 -0700282ifdef LOCAL_SDK_VERSION
Ying Wang1a081002010-07-13 14:55:47 -0700283my_target_project_includes :=
Andrew Hsieh140761af02014-04-25 23:47:10 -0700284my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_sysroot_include)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800285my_target_global_cppflags := $(my_ndk_stl_cppflags)
Ying Wang1a081002010-07-13 14:55:47 -0700286else
Ying Wang6ef65192014-01-15 16:02:16 -0800287my_target_project_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES)
288my_target_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_C_INCLUDES)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800289my_target_global_cppflags :=
Ying Wangf4723fa2013-08-15 11:01:10 -0700290endif # LOCAL_SDK_VERSION
291
Ying Wang824344a2014-05-27 13:03:36 -0700292ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800293my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800294my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800295my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CPPFLAGS)
Ying Wang1f982832014-02-06 18:08:44 -0800296my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_LDFLAGS)
Ying Wangda4bf422012-08-16 16:45:01 -0700297else
Ying Wang6ef65192014-01-15 16:02:16 -0800298my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800299my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800300my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800301my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700302endif # my_clang
Ying Wangda4bf422012-08-16 16:45:01 -0700303
Ying Wang1a081002010-07-13 14:55:47 -0700304$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes)
Evgeniy Stepanova7095e92012-03-30 12:18:52 +0400305$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes)
Ying Wang1a081002010-07-13 14:55:47 -0700306$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800307$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CONLYFLAGS := $(my_target_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800308$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags)
309$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags)
310
Ying Wang7fff9a12014-01-09 14:39:41 -0800311else # LOCAL_IS_HOST_MODULE
312
Ying Wang824344a2014-05-27 13:03:36 -0700313ifeq ($(my_clang),true)
Dan Willemsen057aaea2015-08-14 12:59:50 -0700314my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CFLAGS)
315my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CONLYFLAGS)
316my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CPPFLAGS)
317my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_LDFLAGS)
318my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)C_INCLUDES)
Logan Chiene6f65432013-12-10 19:07:41 +0800319else
Dan Willemsen057aaea2015-08-14 12:59:50 -0700320my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CFLAGS)
321my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CONLYFLAGS)
322my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CPPFLAGS)
323my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_LDFLAGS)
324my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)C_INCLUDES)
Ying Wang824344a2014-05-27 13:03:36 -0700325endif # my_clang
Logan Chiene6f65432013-12-10 19:07:41 +0800326
327$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_C_INCLUDES := $(my_host_c_includes)
328$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800329$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CONLYFLAGS := $(my_host_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800330$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags)
331$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags)
332endif # LOCAL_IS_HOST_MODULE
Ying Wang1a081002010-07-13 14:55:47 -0700333
Dan Albert43e128a2015-01-23 16:12:57 -0800334# To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and
335# build with NATIVE_COVERAGE=true in your enviornment. Note that the build
336# system is not sensitive to changes to NATIVE_COVERAGE, so you should do a
337# clean build of your module after toggling it.
338ifeq ($(NATIVE_COVERAGE),true)
339 ifeq ($(my_native_coverage),true)
Dan Albert343ed672015-01-25 16:20:57 -0800340 # Note that clang coverage doesn't play nicely with acov out of the box.
341 # Clang apparently generates .gcno files that aren't compatible with
342 # gcov-4.8. This can be solved by installing gcc-4.6 and invoking lcov
343 # with `--gcov-tool /usr/bin/gcov-4.6`.
344 #
345 # http://stackoverflow.com/questions/17758126/clang-code-coverage-invalid-output
Dan Albert2c03e042015-01-24 15:14:35 -0800346 my_cflags += --coverage -O0
Dan Albert343ed672015-01-25 16:20:57 -0800347 my_ldflags += --coverage
Dan Albert43e128a2015-01-23 16:12:57 -0800348 endif
349else
350 my_native_coverage := false
351endif
352
Dan Albert7fbbc5d2015-10-08 14:16:39 -0700353ifeq ($(my_clang),true)
354 my_coverage_lib := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_LIBPROFILE_RT)
355else
356 my_coverage_lib := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_LIBGCOV)
357endif
358
359$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_COVERAGE_LIB := $(my_coverage_lib)
360
Ying Wang1a081002010-07-13 14:55:47 -0700361###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800362## Define PRIVATE_ variables used by multiple module types
363###########################################################
364$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700365 $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800366
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800367ifeq ($(strip $(WITH_SYNTAX_CHECK)),)
368 LOCAL_NO_SYNTAX_CHECK := true
369endif
370
Andrew Hsieh906cb782013-09-10 17:37:14 +0800371ifeq ($(strip $(WITH_STATIC_ANALYZER)),)
372 LOCAL_NO_STATIC_ANALYZER := true
373endif
374
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800375ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
376 my_syntax_arch := host
377else
Ying Wang6ef65192014-01-15 16:02:16 -0800378 my_syntax_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800379endif
380
Ying Wang6ef65192014-01-15 16:02:16 -0800381ifeq ($(strip $(my_cc)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700382 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800383 my_cc := $(CLANG)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400384 else
Ying Wang6ef65192014-01-15 16:02:16 -0800385 my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400386 endif
Ying Wangc671a7c2015-07-20 18:40:18 -0700387 my_cc := $(my_cc_wrapper) $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800388endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800389ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800390 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800391else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800392ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800393 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-syntax $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800394endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800395endif
Ying Wang6ef65192014-01-15 16:02:16 -0800396$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800397
Ying Wang6ef65192014-01-15 16:02:16 -0800398ifeq ($(strip $(my_cxx)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700399 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800400 my_cxx := $(CLANG_CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400401 else
Ying Wang6ef65192014-01-15 16:02:16 -0800402 my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400403 endif
Ying Wangc671a7c2015-07-20 18:40:18 -0700404 my_cxx := $(my_cxx_wrapper) $(my_cxx)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800405endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800406ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800407 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-analyzer $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800408else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800409ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800410 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-syntax $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800411endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800412endif
Evgenii Stepanov8f5e67a2015-07-10 18:06:51 -0700413$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LINKER := $(my_linker)
Ying Wang6ef65192014-01-15 16:02:16 -0800414$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(my_cxx)
Dan Albertb6bb71b2014-08-05 14:44:41 -0700415$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800416
417# TODO: support a mix of standard extensions so that this isn't necessary
418LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION))
419ifeq ($(LOCAL_CPP_EXTENSION),)
420 LOCAL_CPP_EXTENSION := .cpp
421endif
422$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPP_EXTENSION := $(LOCAL_CPP_EXTENSION)
423
424# Certain modules like libdl have to have symbols resolved at runtime and blow
425# up if --no-undefined is passed to the linker.
426ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),)
Dan Albertb58fb4a2014-11-14 17:15:00 -0800427ifeq ($(my_allow_undefined_symbols),)
Ying Wang6ef65192014-01-15 16:02:16 -0800428 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)NO_UNDEFINED_LDFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800429endif
430endif
431
Ying Wangfcdabd42011-04-25 14:22:41 -0700432ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES))
433$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true
434else
435$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES :=
436endif
437
The Android Open Source Project88b60792009-03-03 19:28:42 -0800438###########################################################
439## Define arm-vs-thumb-mode flags.
440###########################################################
441LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE))
Ying Wangfaeb6932015-04-07 11:59:34 -0700442ifeq ($($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800443arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm)
444normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb)
445
Dave Bort95282482009-04-23 18:44:55 -0700446# Read the values from something like TARGET_arm_CFLAGS or
447# TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't
448# actually used (although they are usually empty).
Ying Wang6ef65192014-01-15 16:02:16 -0800449arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS)
450normal_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(normal_objects_mode)_CFLAGS)
Dan Albertdb905e72014-08-18 11:14:38 -0700451ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800452arm_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(arm_objects_cflags))
453normal_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(normal_objects_cflags))
Evgeniy Stepanovf50f4c52012-04-05 11:44:37 +0400454endif
455
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800456else
457arm_objects_mode :=
458normal_objects_mode :=
459arm_objects_cflags :=
460normal_objects_cflags :=
461endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800462
463###########################################################
464## Define per-module debugging flags. Users can turn on
465## debugging for a particular module by setting DEBUG_MODULE_ModuleName
466## to a non-empty value in their environment or buildspec.mk,
467## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the
468## debug flags that they want to use.
469###########################################################
470ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE))
471 debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS)
472else
473 debug_cflags :=
474endif
475
Tim Murraya7aa8002012-10-29 16:06:00 -0700476####################################################
477## Compile RenderScript with reflected C++
478####################################################
479
Ying Wangb8e01852014-01-23 15:09:04 -0800480renderscript_sources := $(filter %.rs %.fs,$(my_src_files))
Tim Murraya7aa8002012-10-29 16:06:00 -0700481
482ifneq (,$(renderscript_sources))
483
484renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
485RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp
486renderscript_intermediate := $(intermediates)/renderscript
487
Noah Presler4796a8c2015-08-13 17:04:10 -0700488renderscript_target_api :=
489
490ifneq (,$(LOCAL_RENDERSCRIPT_TARGET_API))
491renderscript_target_api := $(LOCAL_RENDERSCRIPT_TARGET_API)
492else
493ifneq (,$(LOCAL_SDK_VERSION))
494# Set target-api for LOCAL_SDK_VERSIONs other than current.
495ifneq (,$(filter-out current system_current, $(LOCAL_SDK_VERSION)))
496renderscript_target_api := $(LOCAL_SDK_VERSION)
497endif
498endif # LOCAL_SDK_VERSION is set
499endif # LOCAL_RENDERSCRIPT_TARGET_API is set
500
501
Tim Murraya7aa8002012-10-29 16:06:00 -0700502ifeq ($(LOCAL_RENDERSCRIPT_CC),)
503LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
504endif
505
506# Turn on all warnings and warnings as errors for RS compiles.
507# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
508renderscript_flags := -Wall -Werror
509renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
Ying Wangacaada12014-09-10 16:11:41 -0700510# -m32 or -m64
511renderscript_flags += -m$(my_32_64_bit_suffix)
Tim Murrayf0020c62014-09-10 15:11:01 -0700512
Ying Wang6ef65192014-01-15 16:02:16 -0800513renderscript_includes := \
Tim Murraya7aa8002012-10-29 16:06:00 -0700514 $(TOPDIR)external/clang/lib/Headers \
515 $(TOPDIR)frameworks/rs/scriptc \
516 $(LOCAL_RENDERSCRIPT_INCLUDES)
517
518ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
Ying Wang6ef65192014-01-15 16:02:16 -0800519renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
Tim Murraya7aa8002012-10-29 16:06:00 -0700520endif
521
Ying Wangb9319562015-04-03 16:15:28 -0700522bc_dep_files := $(addprefix $(renderscript_intermediate)/, \
523 $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
524
Ying Wang6ef65192014-01-15 16:02:16 -0800525$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes)
Tim Murraya7aa8002012-10-29 16:06:00 -0700526$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
527$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
528$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
529$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate)
Noah Presler4796a8c2015-08-13 17:04:10 -0700530$(RenderScript_file_stamp): PRIVATE_RS_TARGET_API := $(renderscript_target_api)
Ying Wangb9319562015-04-03 16:15:28 -0700531$(RenderScript_file_stamp): PRIVATE_DEP_FILES := $(bc_dep_files)
Tim Murraya7aa8002012-10-29 16:06:00 -0700532$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
533 $(transform-renderscripts-to-cpp-and-bc)
534
Ying Wangb9319562015-04-03 16:15:28 -0700535# include the dependency files (.d/.P) generated by llvm-rs-cc.
536-include $(bc_dep_files:%.d=%.P)
Tim Murraya7aa8002012-10-29 16:06:00 -0700537
538LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
539
540rs_generated_cpps := $(addprefix \
541 $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \
542 $(notdir $(renderscript_sources)))))
543
Stephen Hines8ff92522014-06-06 12:51:47 -0700544# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Tim Murraya7aa8002012-10-29 16:06:00 -0700545$(rs_generated_cpps) : $(RenderScript_file_stamp)
Ying Wang81ab8332014-05-28 16:17:09 -0700546 @echo "Updated RS generated cpp file $@."
Ying Wange25b3982015-02-26 18:47:21 -0800547 $(hide) touch $@
Tim Murraya7aa8002012-10-29 16:06:00 -0700548
Ying Wang6ef65192014-01-15 16:02:16 -0800549my_c_includes += $(renderscript_intermediate)
550my_generated_sources += $(rs_generated_cpps)
Tim Murraya7aa8002012-10-29 16:06:00 -0700551
552endif
553
554
The Android Open Source Project88b60792009-03-03 19:28:42 -0800555###########################################################
556## Stuff source generated from one-off tools
557###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800558$(my_generated_sources): PRIVATE_MODULE := $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800559
Colin Crossd8262642014-01-24 23:17:21 -0800560my_gen_sources_copy := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(filter $(generated_sources_dir)/%,$(my_generated_sources)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800561
Colin Crossd8262642014-01-24 23:17:21 -0800562$(my_gen_sources_copy): $(intermediates)/% : $(generated_sources_dir)/% | $(ACP)
563 @echo "Copy: $@"
564 $(copy-file-to-target)
565
566my_generated_sources := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(my_generated_sources))
567
568ALL_GENERATED_SOURCES += $(my_generated_sources)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800569
570###########################################################
Ying Wangfaeb6932015-04-07 11:59:34 -0700571## Compile the .proto files to .cc (or .c) and then to .o
Ying Wanga5fc87a2010-11-02 18:43:16 -0700572###########################################################
Ying Wangb8e01852014-01-23 15:09:04 -0800573proto_sources := $(filter %.proto,$(my_src_files))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700574proto_generated_objects :=
575proto_generated_headers :=
576ifneq ($(proto_sources),)
Ying Wangfaeb6932015-04-07 11:59:34 -0700577proto_generated_sources_dir := $(generated_sources_dir)/proto
Ying Wangead89442014-02-25 11:18:40 -0800578proto_generated_obj_dir := $(intermediates)/proto
Ying Wangfaeb6932015-04-07 11:59:34 -0700579
580ifneq (,$(filter nanopb-c nanopb-c-enable_malloc, $(LOCAL_PROTOC_OPTIMIZE_TYPE)))
581my_proto_source_suffix := .c
582my_proto_c_includes := external/nanopb-c
583my_protoc_flags := --nanopb_out=$(proto_generated_sources_dir) \
584 --plugin=external/nanopb-c/generator/protoc-gen-nanopb
585else
586my_proto_source_suffix := .cc
587my_proto_c_includes := external/protobuf/src
588my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI
589my_protoc_flags := --cpp_out=$(proto_generated_sources_dir)
590endif
591my_proto_c_includes += $(proto_generated_sources_dir)
592
593proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
594proto_generated_sources := $(addprefix $(proto_generated_sources_dir)/, \
595 $(patsubst %.proto,%.pb$(my_proto_source_suffix),$(proto_sources_fullpath)))
596proto_generated_headers := $(patsubst %.pb$(my_proto_source_suffix),%.pb.h, $(proto_generated_sources))
Ying Wangead89442014-02-25 11:18:40 -0800597proto_generated_objects := $(addprefix $(proto_generated_obj_dir)/, \
598 $(patsubst %.proto,%.pb.o,$(proto_sources_fullpath)))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700599
Ying Wangead89442014-02-25 11:18:40 -0800600# Ensure the transform-proto-to-cc rule is only defined once in multilib build.
601ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined
Ying Wangfaeb6932015-04-07 11:59:34 -0700602$(proto_generated_sources): PRIVATE_PROTO_INCLUDES := $(TOP)
603$(proto_generated_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS) $(my_protoc_flags)
604$(proto_generated_sources): $(proto_generated_sources_dir)/%.pb$(my_proto_source_suffix): %.proto $(PROTOC)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700605 $(transform-proto-to-cc)
606
Stephen Hines8ff92522014-06-06 12:51:47 -0700607# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Ying Wangfaeb6932015-04-07 11:59:34 -0700608$(proto_generated_headers): $(proto_generated_sources_dir)/%.pb.h: $(proto_generated_sources_dir)/%.pb$(my_proto_source_suffix)
Ying Wang81ab8332014-05-28 16:17:09 -0700609 @echo "Updated header file $@."
Ying Wange25b3982015-02-26 18:47:21 -0800610 $(hide) touch $@
Ying Wanga5fc87a2010-11-02 18:43:16 -0700611
Ying Wangead89442014-02-25 11:18:40 -0800612$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true
613endif # transform-proto-to-cc rule included only once
614
Ying Wang022a7b32012-06-13 11:38:10 -0700615$(proto_generated_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
616$(proto_generated_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wangfaeb6932015-04-07 11:59:34 -0700617$(proto_generated_objects): $(proto_generated_obj_dir)/%.o: $(proto_generated_sources_dir)/%$(my_proto_source_suffix) $(proto_generated_headers)
618ifeq ($(my_proto_source_suffix),.c)
619 $(transform-$(PRIVATE_HOST)c-to-o)
620else
Ying Wanga5fc87a2010-11-02 18:43:16 -0700621 $(transform-$(PRIVATE_HOST)cpp-to-o)
Ying Wangfaeb6932015-04-07 11:59:34 -0700622endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700623-include $(proto_generated_objects:%.o=%.P)
624
Ying Wangfaeb6932015-04-07 11:59:34 -0700625my_c_includes += $(my_proto_c_includes)
626# Auto-export the generated proto source dir.
627my_export_c_include_dirs += $(my_proto_c_includes)
628
629ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c-enable_malloc)
Ying Wang8a0d53e2015-04-08 09:54:34 -0700630 my_static_libraries += libprotobuf-c-nano-enable_malloc
Ying Wangfaeb6932015-04-07 11:59:34 -0700631else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c)
Ying Wang8a0d53e2015-04-08 09:54:34 -0700632 my_static_libraries += libprotobuf-c-nano
Ying Wangfaeb6932015-04-07 11:59:34 -0700633else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full)
Dan Albertc3031c72014-11-11 10:42:17 -0800634 ifdef LOCAL_SDK_VERSION
Dan Alberta187fb52015-09-08 10:47:03 -0700635 my_static_libraries += libprotobuf-cpp-full-ndk
Dan Albertc3031c72014-11-11 10:42:17 -0800636 else
637 my_shared_libraries += libprotobuf-cpp-full
638 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700639else
Dan Albertc3031c72014-11-11 10:42:17 -0800640 ifdef LOCAL_SDK_VERSION
Dan Alberta187fb52015-09-08 10:47:03 -0700641 my_static_libraries += libprotobuf-cpp-lite-ndk
Dan Albertc3031c72014-11-11 10:42:17 -0800642 else
643 my_shared_libraries += libprotobuf-cpp-lite
644 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700645endif
Ying Wangead89442014-02-25 11:18:40 -0800646endif # $(proto_sources) non-empty
Ying Wanga5fc87a2010-11-02 18:43:16 -0700647
Ying Wanga5fc87a2010-11-02 18:43:16 -0700648###########################################################
Christopher Wiley9b17dea2015-08-20 09:08:17 -0700649## Compile the .dbus-xml files to c++ headers
Christopher Wileybc2be462015-07-29 17:14:24 -0700650###########################################################
Christopher Wiley9b17dea2015-08-20 09:08:17 -0700651dbus_definitions := $(filter %.dbus-xml,$(my_src_files))
Christopher Wiley529f1762015-08-14 14:55:32 -0700652dbus_generated_headers :=
653ifneq ($(dbus_definitions),)
Christopher Wileybc2be462015-07-29 17:14:24 -0700654
Christopher Wiley529f1762015-08-14 14:55:32 -0700655dbus_definition_paths := $(addprefix $(LOCAL_PATH)/,$(dbus_definitions))
Christopher Wileybc2be462015-07-29 17:14:24 -0700656dbus_service_config := $(filter %dbus-service-config.json,$(my_src_files))
Christopher Wiley529f1762015-08-14 14:55:32 -0700657dbus_service_config_path := $(addprefix $(LOCAL_PATH)/,$(dbus_service_config))
Christopher Wileybc2be462015-07-29 17:14:24 -0700658
Christopher Wiley529f1762015-08-14 14:55:32 -0700659dbus_gen_dir := $(generated_sources_dir)/dbus_bindings
Christopher Wileybc2be462015-07-29 17:14:24 -0700660
Christopher Wiley529f1762015-08-14 14:55:32 -0700661ifdef LOCAL_DBUS_PROXY_PREFIX
662dbus_header_dir := $(dbus_gen_dir)/include/$(LOCAL_DBUS_PROXY_PREFIX)
663dbus_headers := dbus-proxies.h
664else
665dbus_header_dir := $(dbus_gen_dir)
Christopher Wiley9b17dea2015-08-20 09:08:17 -0700666dbus_headers := $(patsubst %.dbus-xml,%.h,$(dbus_definitions))
Christopher Wiley529f1762015-08-14 14:55:32 -0700667endif
668dbus_generated_headers := $(addprefix $(dbus_header_dir)/,$(dbus_headers))
Christopher Wileybc2be462015-07-29 17:14:24 -0700669
670# Ensure that we only define build rules once in multilib builds.
671ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined
672$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined := true
Christopher Wiley529f1762015-08-14 14:55:32 -0700673
674$(dbus_generated_headers): PRIVATE_MODULE := $(LOCAL_MODULE)
675$(dbus_generated_headers): PRIVATE_DBUS_SERVICE_CONFIG := $(dbus_service_config_path)
676$(dbus_generated_headers) : $(dbus_service_config_path) $(DBUS_GENERATOR)
677ifdef LOCAL_DBUS_PROXY_PREFIX
678$(dbus_generated_headers) : $(dbus_definition_paths)
679 $(generate-dbus-proxies)
Peter Qiu425e0192015-10-14 16:46:41 -0700680else
681$(dbus_generated_headers) : $(dbus_header_dir)/%.h : $(LOCAL_PATH)/%.dbus-xml
682 $(generate-dbus-adaptors)
683endif # $(LOCAL_DBUS_PROXY_PREFIX)
684endif # $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined
Christopher Wiley529f1762015-08-14 14:55:32 -0700685
Peter Qiu425e0192015-10-14 16:46:41 -0700686ifdef LOCAL_DBUS_PROXY_PREFIX
Christopher Wiley529f1762015-08-14 14:55:32 -0700687# Auto-export the generated dbus proxy directory.
688my_export_c_include_dirs += $(dbus_gen_dir)/include
689my_c_includes += $(dbus_gen_dir)/include
690else
Christopher Wiley529f1762015-08-14 14:55:32 -0700691my_export_c_include_dirs += $(dbus_header_dir)
692my_c_includes += $(dbus_header_dir)
693endif # $(LOCAL_DBUS_PROXY_PREFIX)
Christopher Wileybc2be462015-07-29 17:14:24 -0700694
Christopher Wiley529f1762015-08-14 14:55:32 -0700695my_generated_sources += $(dbus_generated_headers)
696
697endif # $(dbus_definitions) non-empty
Christopher Wileybc2be462015-07-29 17:14:24 -0700698
699
700###########################################################
Christopher Wiley2df75d12015-10-14 17:27:24 -0700701## AIDL: Compile .aidl files to .cpp and .h files
702###########################################################
703aidl_src := $(strip $(filter %.aidl,$(my_src_files)))
704aidl_gen_cpp :=
705ifneq ($(aidl_src),)
706
707aidl_gen_cpp_root := $(intermediates)/aidl-generated/src
708aidl_gen_include_root := $(intermediates)/aidl-generated/include
709
710aidl_gen_cpp := $(patsubst %.aidl,%$(LOCAL_CPP_EXTENSION),$(aidl_src))
711aidl_gen_cpp := $(addprefix $(aidl_gen_cpp_root)/,$(aidl_gen_cpp))
712
713# TODO(wiley): we could pass down a flag here to only generate the server or
714# client side of the binder interface.
715$(aidl_gen_cpp) : PRIVATE_MODULE := $(LOCAL_MODULE)
716$(aidl_gen_cpp) : PRIVATE_HEADER_OUTPUT_DIR := $(aidl_gen_include_root)
717$(aidl_gen_cpp) : PRIVATE_AIDL_FLAGS := $(addprefix -I,$(LOCAL_AIDL_INCLUDES))
718
719# Multi-architecture builds have distinct intermediates directories.
720# Define rules for both architectures.
721$(aidl_gen_cpp) : $(aidl_gen_cpp_root)/%$(LOCAL_CPP_EXTENSION) : $(LOCAL_PATH)/%.aidl $(AIDL_CPP)
722 $(transform-aidl-to-cpp)
723-include $(addsuffix .P,$(basename $(aidl_gen_cpp)))
724
725# Add generated headers to include path.
726my_c_includes += $(aidl_gen_include_root)
727# Pick up the generated C++ files later for transformation to .o files.
728my_generated_sources += $(aidl_gen_cpp)
729
730endif # $(aidl_src) non-empty
731
732###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000733## YACC: Compile .y and .yy files to .cpp and the to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800734###########################################################
735
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000736y_yacc_sources := $(filter %.y,$(my_src_files))
737y_yacc_cpps := $(addprefix \
738 $(intermediates)/,$(y_yacc_sources:.y=$(LOCAL_CPP_EXTENSION)))
739
740yy_yacc_sources := $(filter %.yy,$(my_src_files))
741yy_yacc_cpps := $(addprefix \
742 $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION)))
743
744yacc_cpps := $(y_yacc_cpps) $(yy_yacc_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800745yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h)
746yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o)
747
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000748ifneq ($(strip $(y_yacc_cpps)),)
749$(y_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700750 $(TOPDIR)$(LOCAL_PATH)/%.y \
Dan Albert954b5bd2014-11-08 22:20:03 -0800751 $(lex_cpps) $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800752 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
753$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000754endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800755
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000756ifneq ($(strip $(yy_yacc_cpps)),)
757$(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
758 $(TOPDIR)$(LOCAL_PATH)/%.yy \
Dan Albert954b5bd2014-11-08 22:20:03 -0800759 $(lex_cpps) $(my_additional_dependencies)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000760 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
761$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
762endif
763
764ifneq ($(strip $(yacc_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800765$(yacc_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
766$(yacc_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
767$(yacc_objects): $(intermediates)/%.o: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
768 $(transform-$(PRIVATE_HOST)cpp-to-o)
769endif
770
771###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000772## LEX: Compile .l and .ll files to .cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800773###########################################################
774
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000775l_lex_sources := $(filter %.l,$(my_src_files))
776l_lex_cpps := $(addprefix \
777 $(intermediates)/,$(l_lex_sources:.l=$(LOCAL_CPP_EXTENSION)))
778
779ll_lex_sources := $(filter %.ll,$(my_src_files))
780ll_lex_cpps := $(addprefix \
781 $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION)))
782
783lex_cpps := $(l_lex_cpps) $(ll_lex_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800784lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o)
785
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000786ifneq ($(strip $(l_lex_cpps)),)
787$(l_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700788 $(TOPDIR)$(LOCAL_PATH)/%.l
The Android Open Source Project88b60792009-03-03 19:28:42 -0800789 $(transform-l-to-cpp)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000790endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800791
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000792ifneq ($(strip $(ll_lex_cpps)),)
793$(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
794 $(TOPDIR)$(LOCAL_PATH)/%.ll
795 $(transform-l-to-cpp)
796endif
797
798ifneq ($(strip $(lex_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800799$(lex_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
800$(lex_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
801$(lex_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700802 $(intermediates)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800803 $(my_additional_dependencies) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700804 $(yacc_headers)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800805 $(transform-$(PRIVATE_HOST)cpp-to-o)
806endif
807
808###########################################################
809## C++: Compile .cpp files to .o.
810###########################################################
811
Jeff Browne33ba4c2011-07-11 22:11:46 -0700812# we also do this on host modules, even though
The Android Open Source Project88b60792009-03-03 19:28:42 -0800813# it's not really arm, because there are files that are shared.
Ying Wangfb22a422015-03-10 18:03:11 -0700814cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(my_src_files)))
815dotdot_arm_sources := $(filter ../%,$(cpp_arm_sources))
816cpp_arm_sources := $(filter-out ../%,$(cpp_arm_sources))
817cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800818
Ying Wangfb22a422015-03-10 18:03:11 -0700819# For source files starting with ../, we remove all the ../ in the object file path,
820# to avoid object file escaping the intermediate directory.
821dotdot_arm_objects :=
822$(foreach s,$(dotdot_arm_sources),\
823 $(eval $(call compile-dotdot-cpp-file,$(s),\
824 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
825 dotdot_arm_objects)))
826
827dotdot_sources := $(filter ../%$(LOCAL_CPP_EXTENSION),$(my_src_files))
828dotdot_objects :=
829$(foreach s,$(dotdot_sources),\
830 $(eval $(call compile-dotdot-cpp-file,$(s),\
831 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
832 dotdot_objects)))
833
834cpp_normal_sources := $(filter-out ../%,$(filter %$(LOCAL_CPP_EXTENSION),$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800835cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o))
836
Ying Wangfb22a422015-03-10 18:03:11 -0700837$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
838$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
839$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
840$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800841
842cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects)
843
844ifneq ($(strip $(cpp_objects)),)
845$(cpp_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700846 $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800847 $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800848 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800849 $(transform-$(PRIVATE_HOST)cpp-to-o)
850-include $(cpp_objects:%.o=%.P)
851endif
852
Ying Wangfb22a422015-03-10 18:03:11 -0700853cpp_objects += $(dotdot_arm_objects) $(dotdot_objects)
854
The Android Open Source Project88b60792009-03-03 19:28:42 -0800855###########################################################
856## C++: Compile generated .cpp files to .o.
857###########################################################
858
Ying Wangec6d6262014-01-16 16:21:03 -0800859gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800860gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o)
861
862ifneq ($(strip $(gen_cpp_objects)),)
863# Compile all generated files as thumb.
864# TODO: support compiling certain generated files as arm.
865$(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
866$(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400867$(gen_cpp_objects): $(intermediates)/%.o: \
868 $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800869 $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800870 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800871 $(transform-$(PRIVATE_HOST)cpp-to-o)
872-include $(gen_cpp_objects:%.o=%.P)
873endif
874
875###########################################################
876## S: Compile generated .S and .s files to .o.
877###########################################################
878
Ying Wangec6d6262014-01-16 16:21:03 -0800879gen_S_sources := $(filter %.S,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800880gen_S_objects := $(gen_S_sources:%.S=%.o)
881
882ifneq ($(strip $(gen_S_sources)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400883$(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800884 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800885 $(transform-$(PRIVATE_HOST)s-to-o)
886-include $(gen_S_objects:%.o=%.P)
887endif
888
Ying Wangec6d6262014-01-16 16:21:03 -0800889gen_s_sources := $(filter %.s,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800890gen_s_objects := $(gen_s_sources:%.s=%.o)
891
892ifneq ($(strip $(gen_s_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400893$(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800894 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800895 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
896-include $(gen_s_objects:%.o=%.P)
897endif
898
899gen_asm_objects := $(gen_S_objects) $(gen_s_objects)
900
901###########################################################
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000902## o: Include generated .o files in output.
903###########################################################
904
Ying Wangec6d6262014-01-16 16:21:03 -0800905gen_o_objects := $(filter %.o,$(my_generated_sources))
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000906
907###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800908## C: Compile .c files to .o.
909###########################################################
910
Ying Wangfb22a422015-03-10 18:03:11 -0700911c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files)))
912dotdot_arm_sources := $(filter ../%,$(c_arm_sources))
913c_arm_sources := $(filter-out ../%,$(c_arm_sources))
914c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800915
Ying Wangfb22a422015-03-10 18:03:11 -0700916# For source files starting with ../, we remove all the ../ in the object file path,
917# to avoid object file escaping the intermediate directory.
918dotdot_arm_objects :=
919$(foreach s,$(dotdot_arm_sources),\
920 $(eval $(call compile-dotdot-c-file,$(s),\
921 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
922 dotdot_arm_objects)))
923
924dotdot_sources := $(filter ../%.c, $(my_src_files))
925dotdot_objects :=
926$(foreach s, $(dotdot_sources),\
927 $(eval $(call compile-dotdot-c-file,$(s),\
928 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
929 dotdot_objects)))
930
931c_normal_sources := $(filter-out ../%,$(filter %.c,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800932c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o))
933
Ying Wangfb22a422015-03-10 18:03:11 -0700934$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
935$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
936$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
937$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800938
939c_objects := $(c_arm_objects) $(c_normal_objects)
940
941ifneq ($(strip $(c_objects)),)
Ying Wangfaeb6932015-04-07 11:59:34 -0700942$(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800943 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800944 $(transform-$(PRIVATE_HOST)c-to-o)
945-include $(c_objects:%.o=%.P)
946endif
947
Ying Wangfb22a422015-03-10 18:03:11 -0700948c_objects += $(dotdot_arm_objects) $(dotdot_objects)
949
The Android Open Source Project88b60792009-03-03 19:28:42 -0800950###########################################################
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700951## C: Compile generated .c files to .o.
952###########################################################
953
Ying Wangec6d6262014-01-16 16:21:03 -0800954gen_c_sources := $(filter %.c,$(my_generated_sources))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700955gen_c_objects := $(gen_c_sources:%.c=%.o)
956
957ifneq ($(strip $(gen_c_objects)),)
958# Compile all generated files as thumb.
959# TODO: support compiling certain generated files as arm.
960$(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
961$(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wangfaeb6932015-04-07 11:59:34 -0700962$(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800963 $(my_additional_dependencies)
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700964 $(transform-$(PRIVATE_HOST)c-to-o)
965-include $(gen_c_objects:%.o=%.P)
966endif
967
968###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200969## ObjC: Compile .m files to .o
970###########################################################
971
Ying Wangb8e01852014-01-23 15:09:04 -0800972objc_sources := $(filter %.m,$(my_src_files))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200973objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o))
974
975ifneq ($(strip $(objc_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400976$(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800977 $(my_additional_dependencies)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200978 $(transform-$(PRIVATE_HOST)m-to-o)
979-include $(objc_objects:%.o=%.P)
980endif
981
982###########################################################
Scott James Remnantdd86e5a2015-09-17 15:40:49 -0700983## ObjC++: Compile .mm files to .o
984###########################################################
985
986objcpp_sources := $(filter %.mm,$(my_src_files))
987objcpp_objects := $(addprefix $(intermediates)/,$(objcpp_sources:.mm=.o))
988
989ifneq ($(strip $(objcpp_objects)),)
990$(objcpp_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.mm $(yacc_cpps) $(proto_generated_headers) \
991 $(my_additional_dependencies)
992 $(transform-$(PRIVATE_HOST)mm-to-o)
993-include $(objcpp_objects:%.o=%.P)
994endif
995
996###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800997## AS: Compile .S files to .o.
998###########################################################
999
Ying Wangb8e01852014-01-23 15:09:04 -08001000asm_sources_S := $(filter %.S,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -07001001dotdot_sources := $(filter ../%,$(asm_sources_S))
1002asm_sources_S := $(filter-out ../%,$(asm_sources_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001003asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o))
1004
Ying Wangfb22a422015-03-10 18:03:11 -07001005dotdot_objects_S :=
1006$(foreach s,$(dotdot_sources),\
1007 $(eval $(call compile-dotdot-s-file,$(s),\
1008 $(my_additional_dependencies),\
1009 dotdot_objects_S)))
1010
The Android Open Source Project88b60792009-03-03 19:28:42 -08001011ifneq ($(strip $(asm_objects_S)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001012$(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -08001013 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001014 $(transform-$(PRIVATE_HOST)s-to-o)
1015-include $(asm_objects_S:%.o=%.P)
1016endif
1017
Ying Wangb8e01852014-01-23 15:09:04 -08001018asm_sources_s := $(filter %.s,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -07001019dotdot_sources := $(filter ../%,$(asm_sources_s))
1020asm_sources_s := $(filter-out ../%,$(asm_sources_s))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001021asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o))
1022
Ying Wangfb22a422015-03-10 18:03:11 -07001023dotdot_objects_s :=
1024$(foreach s,$(dotdot_sources),\
1025 $(eval $(call compile-dotdot-s-file-no-deps,$(s),\
1026 $(my_additional_dependencies),\
1027 dotdot_objects_s)))
1028
The Android Open Source Project88b60792009-03-03 19:28:42 -08001029ifneq ($(strip $(asm_objects_s)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001030$(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -08001031 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001032 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001033endif
1034
Ying Wangfb22a422015-03-10 18:03:11 -07001035asm_objects := $(dotdot_objects_S) $(dotdot_objects_s) $(asm_objects_S) $(asm_objects_s)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001036
1037
Ying Wangfe1e5c32015-03-09 18:57:40 -07001038# .asm for x86/x86_64 needs to be compiled with yasm.
Ying Wang7b913ce2014-06-05 19:05:47 -07001039asm_sources_asm := $(filter %.asm,$(my_src_files))
1040ifneq ($(strip $(asm_sources_asm)),)
1041asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o))
1042$(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \
Dan Albert954b5bd2014-11-08 22:20:03 -08001043 $(my_additional_dependencies)
Ying Wang7b913ce2014-06-05 19:05:47 -07001044 $(transform-asm-to-o)
1045
1046asm_objects += $(asm_objects_asm)
1047endif
Ying Wang7b913ce2014-06-05 19:05:47 -07001048
Jeff Davidson680f0712015-01-08 18:25:30 -08001049
1050##########################################################
1051## Set up installed module dependency
1052## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for
1053## they may cusomize their install path with LOCAL_MODULE_PATH
1054##########################################################
1055# Get the list of INSTALLED libraries as module names.
1056ifdef LOCAL_SDK_VERSION
1057 installed_shared_library_module_names := \
1058 $(my_shared_libraries)
1059else
1060 installed_shared_library_module_names := \
1061 $(my_shared_libraries) $(my_system_shared_libraries)
1062endif
1063
1064# The real dependency will be added after all Android.mks are loaded and the install paths
1065# of the shared libraries are determined.
1066ifdef LOCAL_INSTALLED_MODULE
1067ifdef installed_shared_library_module_names
1068$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
1069 $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names)))
1070endif
1071endif
1072
1073
Ying Wang5f074802011-11-08 09:31:21 -08001074####################################################
1075## Import includes
1076####################################################
1077import_includes := $(intermediates)/import_includes
1078import_includes_deps := $(strip \
1079 $(foreach l, $(installed_shared_library_module_names), \
Dan Willemsen057aaea2015-08-14 12:59:50 -07001080 $(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 -08001081 $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \
Dan Willemsen057aaea2015-08-14 12:59:50 -07001082 $(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 -08001083$(import_includes): PRIVATE_IMPORT_EXPORT_INCLUDES := $(import_includes_deps)
Colin Crossa4447e82015-09-28 16:26:00 -07001084$(import_includes) : $(LOCAL_MODULE_MAKEFILE_DEP) $(import_includes_deps)
Ying Wang5f074802011-11-08 09:31:21 -08001085 @echo Import includes file: $@
1086 $(hide) mkdir -p $(dir $@) && rm -f $@
1087ifdef import_includes_deps
Ying Wang14d02a32015-01-22 15:44:04 -08001088 $(hide) for f in $(PRIVATE_IMPORT_EXPORT_INCLUDES); do \
Ying Wang5f074802011-11-08 09:31:21 -08001089 cat $$f >> $@; \
1090 done
1091else
1092 $(hide) touch $@
1093endif
1094
The Android Open Source Project88b60792009-03-03 19:28:42 -08001095###########################################################
1096## Common object handling.
1097###########################################################
1098
1099# some rules depend on asm_objects being first. If your code depends on
1100# being first, it's reasonable to require it to be assembly
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001101normal_objects := \
Ying Wangdfbe79b2012-03-22 11:26:22 -07001102 $(asm_objects) \
1103 $(cpp_objects) \
1104 $(gen_cpp_objects) \
1105 $(gen_asm_objects) \
1106 $(c_objects) \
1107 $(gen_c_objects) \
1108 $(objc_objects) \
Scott James Remnantdd86e5a2015-09-17 15:40:49 -07001109 $(objcpp_objects) \
Ying Wangdfbe79b2012-03-22 11:26:22 -07001110 $(yacc_objects) \
1111 $(lex_objects) \
1112 $(proto_generated_objects) \
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001113 $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES))
1114
1115all_objects := $(normal_objects) $(gen_o_objects)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001116
Colin Cross2d206702014-02-13 13:41:52 -08001117my_c_includes += $(TOPDIR)$(LOCAL_PATH) $(intermediates) $(generated_sources_dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001118
Ying Wang848020f2012-08-14 10:13:16 -07001119ifndef LOCAL_SDK_VERSION
Ying Wang6ef65192014-01-15 16:02:16 -08001120 my_c_includes += $(JNI_H_INCLUDE)
Ying Wangbce4b752010-07-22 15:51:56 -07001121endif
1122
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001123# all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES;
1124# use normal_objects here to avoid creating circular dependencies. This assumes
1125# that custom build rules which generate .o files don't consume other generated
1126# sources as input (or if they do they take care of that dependency themselves).
Ying Wangec6d6262014-01-16 16:21:03 -08001127$(normal_objects) : | $(my_generated_sources)
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001128$(all_objects) : | $(import_includes)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001129ALL_C_CPP_ETC_OBJECTS += $(all_objects)
1130
The Android Open Source Project88b60792009-03-03 19:28:42 -08001131
1132###########################################################
1133# Standard library handling.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001134###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001135
1136###########################################################
1137# The list of libraries that this module will link against are in
1138# these variables. Each is a list of bare module names like "libc libm".
1139#
1140# LOCAL_SHARED_LIBRARIES
1141# LOCAL_STATIC_LIBRARIES
1142# LOCAL_WHOLE_STATIC_LIBRARIES
1143#
1144# We need to convert the bare names into the dependencies that
1145# we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE.
1146# LOCAL_BUILT_MODULE should depend on the BUILT versions of the
1147# libraries, so that simply building this module doesn't force
1148# an install of a library. Similarly, LOCAL_INSTALLED_MODULE
1149# should depend on the INSTALLED versions of the libraries so
1150# that they get installed when this module does.
1151###########################################################
1152# NOTE:
1153# WHOLE_STATIC_LIBRARIES are libraries that are pulled into the
1154# module without leaving anything out, which is useful for turning
1155# a collection of .a files into a .so file. Linking against a
1156# normal STATIC_LIBRARY will only pull in code/symbols that are
1157# referenced by the module. (see gcc/ld's --whole-archive option)
1158###########################################################
1159
1160# Get the list of BUILT libraries, which are under
1161# various intermediates directories.
1162so_suffix := $($(my_prefix)SHLIB_SUFFIX)
1163a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX)
1164
Ying Wang848020f2012-08-14 10:13:16 -07001165ifdef LOCAL_SDK_VERSION
The Android Open Source Project88b60792009-03-03 19:28:42 -08001166built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001167 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001168 $(addsuffix $(so_suffix), \
Ying Wang6ef65192014-01-15 16:02:16 -08001169 $(my_shared_libraries)))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001170
Ying Wangd8d37212014-03-21 16:17:04 -07001171# Add the NDK libraries to the built module dependency
Ying Wangcce4c972011-03-03 18:53:53 -08001172my_system_shared_libraries_fullpath := \
1173 $(my_ndk_stl_shared_lib_fullpath) \
Andrew Hsieh140761af02014-04-25 23:47:10 -07001174 $(addprefix $(my_ndk_sysroot_lib)/, \
Ying Wangd8d37212014-03-21 16:17:04 -07001175 $(addsuffix $(so_suffix), $(my_system_shared_libraries)))
Ying Wang1a081002010-07-13 14:55:47 -07001176
1177built_shared_libraries += $(my_system_shared_libraries_fullpath)
Ying Wang1a081002010-07-13 14:55:47 -07001178else
Ying Wang1a081002010-07-13 14:55:47 -07001179built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001180 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
Ying Wang1a081002010-07-13 14:55:47 -07001181 $(addsuffix $(so_suffix), \
Ying Wangd8d37212014-03-21 16:17:04 -07001182 $(installed_shared_library_module_names)))
Ying Wang1a081002010-07-13 14:55:47 -07001183endif
1184
The Android Open Source Project88b60792009-03-03 19:28:42 -08001185built_static_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001186 $(foreach lib,$(my_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001187 $(call intermediates-dir-for, \
Dan Willemsen057aaea2015-08-14 12:59:50 -07001188 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 -08001189
Ying Wang848020f2012-08-14 10:13:16 -07001190ifdef LOCAL_SDK_VERSION
Ying Wangcce4c972011-03-03 18:53:53 -08001191built_static_libraries += $(my_ndk_stl_static_lib)
1192endif
1193
The Android Open Source Project88b60792009-03-03 19:28:42 -08001194built_whole_libraries := \
Colin Cross90353fe2014-02-04 14:53:25 -08001195 $(foreach lib,$(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001196 $(call intermediates-dir-for, \
Dan Willemsen057aaea2015-08-14 12:59:50 -07001197 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 -08001198
The Android Open Source Project88b60792009-03-03 19:28:42 -08001199# We don't care about installed static libraries, since the
1200# libraries have already been linked into the module at that point.
1201# We do, however, care about the NOTICE files for any static
Steve Blockd14d3b42012-03-01 11:34:41 +00001202# libraries that we use. (see notice_files.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001203
1204installed_static_library_notice_file_targets := \
Colin Cross90353fe2014-02-04 14:53:25 -08001205 $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001206 NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib))
1207
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001208# Default is -fno-rtti.
Doug Kwane3c3c6d2011-06-07 10:55:48 -07001209ifeq ($(strip $(LOCAL_RTTI_FLAG)),)
1210LOCAL_RTTI_FLAG := -fno-rtti
1211endif
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001212
The Android Open Source Project88b60792009-03-03 19:28:42 -08001213###########################################################
1214# Rule-specific variable definitions
1215###########################################################
Logan Chiene6f65432013-12-10 19:07:41 +08001216
Ying Wang824344a2014-05-27 13:03:36 -07001217ifeq ($(my_clang),true)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001218my_cflags += $(LOCAL_CLANG_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -08001219my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS)
Dan Albertd2fa96d2014-11-28 14:00:12 -08001220my_cppflags += $(LOCAL_CLANG_CPPFLAGS)
Dan Albertd1600412015-06-10 16:33:43 -07001221my_cflags_no_override += $(GLOBAL_CLANG_CFLAGS_NO_OVERRIDE)
1222my_cppflags_no_override += $(GLOBAL_CLANG_CPPFLAGS_NO_OVERRIDE)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001223my_asflags += $(LOCAL_CLANG_ASFLAGS)
1224my_ldflags += $(LOCAL_CLANG_LDFLAGS)
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -07001225my_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 -08001226my_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 -07001227my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix))
1228my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix))
1229my_asflags += $(LOCAL_CLANG_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_ASFLAGS_$(my_32_64_bit_suffix))
Ying Wang1f982832014-02-06 18:08:44 -08001230my_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cflags))
1231my_cppflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cppflags))
1232my_asflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_asflags))
1233my_ldflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_ldflags))
Logan Chiene6f65432013-12-10 19:07:41 +08001234endif
1235
Ying Wang45d01432014-10-28 14:50:59 -07001236ifeq ($(my_fdo_build), true)
1237 my_cflags := $(patsubst -Os,-O2,$(my_cflags))
1238 fdo_incompatible_flags := -fno-early-inlining -finline-limit=%
1239 my_cflags := $(filter-out $(fdo_incompatible_flags),$(my_cflags))
Dehao Chen295a6d22014-09-19 10:18:12 -07001240endif
1241
Dan Albertdf3fd1d2015-08-12 14:54:16 -07001242# No one should ever use this flag. On GCC it's mere presence will disable all
1243# warnings, even those that are specified after it (contrary to typical warning
1244# flag behavior). This circumvents CFLAGS_NO_OVERRIDE from forcibly enabling the
1245# warnings that are *always* bugs.
1246my_illegal_flags := -w
1247my_cflags := $(filter-out $(my_illegal_flags),$(my_cflags))
1248my_cppflags := $(filter-out $(my_illegal_flags),$(my_cppflags))
1249my_conlyflags := $(filter-out $(my_illegal_flags),$(my_conlyflags))
1250
The Android Open Source Project88b60792009-03-03 19:28:42 -08001251$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -08001252$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags)
Stephen Hines15680292014-11-26 00:53:46 -08001253$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(my_conlyflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001254$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags)
1255$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags)
Dan Albertd1600412015-06-10 16:33:43 -07001256$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS_NO_OVERRIDE := $(my_cflags_no_override)
1257$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS_NO_OVERRIDE := $(my_cppflags_no_override)
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001258$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001259$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001260$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes)
Ying Wang5f074802011-11-08 09:31:21 -08001261$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes)
Ying Wang6ef65192014-01-15 16:02:16 -08001262$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags)
Dan Albertb05f2ca2014-09-12 14:46:57 -07001263$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001264
1265# this is really the way to get the files onto the command line instead
1266# of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work
1267$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries)
1268$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries)
1269$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries)
1270$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects)
1271
1272###########################################################
1273# Define library dependencies.
1274###########################################################
1275# all_libraries is used for the dependencies on LOCAL_BUILT_MODULE.
1276all_libraries := \
1277 $(built_shared_libraries) \
1278 $(built_static_libraries) \
1279 $(built_whole_libraries)
1280
The Android Open Source Project88b60792009-03-03 19:28:42 -08001281# Also depend on the notice files for any static libraries that
1282# are linked into this module. This will force them to be installed
1283# when this module is.
1284$(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets)
Ying Wang5f074802011-11-08 09:31:21 -08001285
1286###########################################################
1287# Export includes
1288###########################################################
1289export_includes := $(intermediates)/export_includes
Ying Wangfaeb6932015-04-07 11:59:34 -07001290$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(my_export_c_include_dirs)
Ying Wang49085952014-05-06 13:03:32 -07001291# Make sure .pb.h are already generated before any dependent source files get compiled.
Colin Crossa4447e82015-09-28 16:26:00 -07001292$(export_includes) : $(LOCAL_MODULE_MAKEFILE_DEP) $(proto_generated_headers) $(dbus_generated_headers)
Ying Wang5f074802011-11-08 09:31:21 -08001293 @echo Export includes file: $< -- $@
1294 $(hide) mkdir -p $(dir $@) && rm -f $@
Ying Wangfaeb6932015-04-07 11:59:34 -07001295ifdef my_export_c_include_dirs
Ying Wang5f074802011-11-08 09:31:21 -08001296 $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
1297 echo "-I $$d" >> $@; \
1298 done
1299else
1300 $(hide) touch $@
1301endif
Ying Wang616e5962012-04-18 17:35:55 -07001302
1303# Make sure export_includes gets generated when you are running mm/mmm
1304$(LOCAL_BUILT_MODULE) : | $(export_includes)