blob: d2fed70a323346209e21ac59c87d2da397c19eb6 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001###########################################################
2## Standard rules for building binary object files from
Ying Wangd8d37212014-03-21 16:17:04 -07003## asm/c/cpp/yacc/lex/etc source files.
The Android Open Source Project88b60792009-03-03 19:28:42 -08004##
5## The list of object files is exported in $(all_objects).
6###########################################################
7
Ying Wangd8d37212014-03-21 16:17:04 -07008#######################################
9include $(BUILD_SYSTEM)/base_rules.mk
10#######################################
11
Dan Albertd3d894d2014-11-14 15:28:49 -080012##################################################
13# Compute the dependency of the shared libraries
14##################################################
15# On the target, we compile with -nostdlib, so we must add in the
16# default system shared libraries, unless they have requested not
17# to by supplying a LOCAL_SYSTEM_SHARED_LIBRARIES value. One would
18# supply that, for example, when building libc itself.
19ifdef LOCAL_IS_HOST_MODULE
20 ifeq ($(LOCAL_SYSTEM_SHARED_LIBRARIES),none)
21 my_system_shared_libraries :=
22 else
23 my_system_shared_libraries := $(LOCAL_SYSTEM_SHARED_LIBRARIES)
24 endif
25else
26 ifeq ($(LOCAL_SYSTEM_SHARED_LIBRARIES),none)
27 my_system_shared_libraries := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES)
28 else
29 my_system_shared_libraries := $(LOCAL_SYSTEM_SHARED_LIBRARIES)
30 endif
31endif
32
33# The following LOCAL_ variables will be modified in this file.
34# Because the same LOCAL_ variables may be used to define modules for both 1st arch and 2nd arch,
35# we can't modify them in place.
36my_src_files := $(LOCAL_SRC_FILES)
37my_static_libraries := $(LOCAL_STATIC_LIBRARIES)
38my_whole_static_libraries := $(LOCAL_WHOLE_STATIC_LIBRARIES)
39my_shared_libraries := $(LOCAL_SHARED_LIBRARIES)
40my_cflags := $(LOCAL_CFLAGS)
41my_cppflags := $(LOCAL_CPPFLAGS)
42my_ldflags := $(LOCAL_LDFLAGS)
43my_ldlibs := $(LOCAL_LDLIBS)
44my_asflags := $(LOCAL_ASFLAGS)
45my_cc := $(LOCAL_CC)
46my_cxx := $(LOCAL_CXX)
47my_c_includes := $(LOCAL_C_INCLUDES)
48my_generated_sources := $(LOCAL_GENERATED_SOURCES)
49my_native_coverage := $(LOCAL_NATIVE_COVERAGE)
50my_additional_dependencies := $(LOCAL_MODULE_MAKEFILE) $(LOCAL_ADDITIONAL_DEPENDENCIES)
51
Andrew Hsieh140761af02014-04-25 23:47:10 -070052my_ndk_sysroot :=
53my_ndk_sysroot_include :=
54my_ndk_sysroot_lib :=
Ying Wang848020f2012-08-14 10:13:16 -070055ifdef LOCAL_SDK_VERSION
Ying Wangfe1bfe72012-08-14 11:08:03 -070056 ifdef LOCAL_NDK_VERSION
57 $(error $(LOCAL_PATH): LOCAL_NDK_VERSION is now retired.)
58 endif
Ying Wang1a081002010-07-13 14:55:47 -070059 ifdef LOCAL_IS_HOST_MODULE
Ian Rogers76a6dc32012-10-01 16:36:23 -070060 $(error $(LOCAL_PATH): LOCAL_SDK_VERSION cannot be used in host module)
Ying Wang1a081002010-07-13 14:55:47 -070061 endif
Ying Wang848020f2012-08-14 10:13:16 -070062 my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/sources
Andrew Hsieh140761af02014-04-25 23:47:10 -070063 my_ndk_sysroot := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
64 my_ndk_sysroot_include := $(my_ndk_sysroot)/usr/include
65 ifeq (x86_64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
66 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib64
67 else
68 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib
69 endif
Ying Wangcce4c972011-03-03 18:53:53 -080070
Dan Albertd3d894d2014-11-14 15:28:49 -080071 # The bionic linker now has support for gnu style hashes (which are much
72 # faster!), but shipping to older devices requires the old style hash.
73 #ifeq ($(shell expr $(LOCAL_SDK_VERSION) >= FIRST_SUPPORTED_VERSION),0)
74 my_ldflags += -Wl,--hash-style=sysv
75 #endif
76
Ying Wangcce4c972011-03-03 18:53:53 -080077 # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location.
78 # See ndk/docs/CPLUSPLUS-SUPPORT.html
79 my_ndk_stl_include_path :=
80 my_ndk_stl_shared_lib_fullpath :=
81 my_ndk_stl_shared_lib :=
82 my_ndk_stl_static_lib :=
Andrew Hsieh73d800e2014-03-04 17:11:52 +080083 my_ndk_stl_cppflags :=
84 LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -080085 ifeq (,$(LOCAL_NDK_STL_VARIANT))
86 LOCAL_NDK_STL_VARIANT := system
87 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +080088 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 -070089 $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -080090 endif
91 ifeq (system,$(LOCAL_NDK_STL_VARIANT))
92 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
93 # for "system" variant, the shared library exists in the system library and -lstdc++ is added by default.
94 else # LOCAL_NDK_STL_VARIANT is not system
95 ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
96 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
97 ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
Ying Wang6ef65192014-01-15 16:02:16 -080098 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)/libstlport_static.a
Ying Wangcce4c972011-03-03 18:53:53 -080099 else
Ying Wang6ef65192014-01-15 16:02:16 -0800100 my_ndk_stl_shared_lib_fullpath := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)/libstlport_shared.so
Ying Wangcce4c972011-03-03 18:53:53 -0800101 my_ndk_stl_shared_lib := -lstlport_shared
102 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800103 else # LOCAL_NDK_STL_VARIANT is not stlport_* either
104 ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
105 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include \
106 $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include \
107 $(my_ndk_source_root)/android/support/include
108 ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
109 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)/libc++_static.a
110 else
111 my_ndk_stl_shared_lib_fullpath := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)/libc++_shared.so
112 my_ndk_stl_shared_lib := -lc++_shared
113 endif
114 my_ndk_stl_cppflags := -std=c++11
Ying Wangcce4c972011-03-03 18:53:53 -0800115 else
116 # LOCAL_NDK_STL_VARIANT is gnustl_static
Ben Cheng4de6fa42014-04-10 22:46:26 -0700117 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/libs/$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)/include \
118 $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/include
119 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/libs/$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)/libgnustl_static.a
Ying Wangcce4c972011-03-03 18:53:53 -0800120 endif
121 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800122 endif
Ying Wang1a081002010-07-13 14:55:47 -0700123endif
124
Dan Albert95994de2014-08-07 18:29:11 -0700125# MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
126# all code is position independent, and then those warnings get promoted to
127# errors.
Ying Wang594a10a2014-08-07 20:08:04 -0700128ifndef USE_MINGW
Dan Albert4803ce22014-08-06 12:36:46 -0700129ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES)
130my_cflags += -fpie
131else
132my_cflags += -fPIC
133endif
Dan Albert95994de2014-08-07 18:29:11 -0700134endif
Dan Albert4803ce22014-08-06 12:36:46 -0700135
Ying Wang6feb6d52014-04-17 10:03:35 -0700136my_src_files += $(LOCAL_SRC_FILES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SRC_FILES_$(my_32_64_bit_suffix))
137my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix))
138my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix))
139my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix))
140my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix))
141my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix))
142my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix))
143my_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 -0800144
Dan Albertdb905e72014-08-18 11:14:38 -0700145my_clang := $(strip $(LOCAL_CLANG))
Ying Wang824344a2014-05-27 13:03:36 -0700146ifdef LOCAL_CLANG_$(my_32_64_bit_suffix)
Dan Albertdb905e72014-08-18 11:14:38 -0700147my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix)))
Ying Wang824344a2014-05-27 13:03:36 -0700148endif
149ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Dan Albertdb905e72014-08-18 11:14:38 -0700150my_clang := $(strip $(LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Ying Wang824344a2014-05-27 13:03:36 -0700151endif
152
Tim Murray92d79cb2014-04-04 14:38:29 -0700153# clang is enabled by default for host builds
154# enable it unless we've specifically disabled clang above
155ifdef LOCAL_IS_HOST_MODULE
Tim Murrayf3ca3d52014-07-24 15:20:18 -0700156 ifneq ($(HOST_OS),windows)
Tim Murray5ca1dc12014-07-24 14:42:53 -0700157 ifeq ($(my_clang),)
158 my_clang := true
159 endif
160 endif
Tim Murray92d79cb2014-04-04 14:38:29 -0700161endif
162
Tim Murray06659bc2014-08-13 11:53:07 -0700163# Add option to make clang the default for device build
164ifeq ($(USE_CLANG_PLATFORM_BUILD),true)
165 ifeq ($(my_clang),)
166 my_clang := true
167 endif
168endif
169
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800170# arch-specific static libraries go first so that generic ones can depend on them
Ying Wang6feb6d52014-04-17 10:03:35 -0700171my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries)
172my_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 -0800173
Ying Wang6feb6d52014-04-17 10:03:35 -0700174my_cflags := $(filter-out $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_UNSUPPORTED_CFLAGS),$(my_cflags))
Ying Wang6ef65192014-01-15 16:02:16 -0800175
Ying Wang75e8fcb2014-10-07 13:03:29 -0700176include $(BUILD_SYSTEM)/cxx_stl_setup.mk
Ying Wangd90de322014-05-23 16:42:37 -0700177
Ying Wang285045b2013-08-13 12:35:10 -0700178# Add static HAL libraries
179ifdef LOCAL_HAL_STATIC_LIBRARIES
180$(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \
181 $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\
Ying Wang6ef65192014-01-15 16:02:16 -0800182 $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\
183 $(eval my_static_libraries += $(lib).default)))
Ying Wang285045b2013-08-13 12:35:10 -0700184b_lib :=
185endif
186
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400187ifeq ($(strip $(LOCAL_ADDRESS_SANITIZER)),true)
Ying Wang824344a2014-05-27 13:03:36 -0700188 my_clang := true
Evgeniy Stepanov5d8029f2014-02-21 18:10:53 +0400189 # Frame pointer based unwinder in ASan requires ARM frame setup.
190 LOCAL_ARM_MODE := arm
Ying Wang6ef65192014-01-15 16:02:16 -0800191 my_cflags += $(ADDRESS_SANITIZER_CONFIG_EXTRA_CFLAGS)
192 my_ldflags += $(ADDRESS_SANITIZER_CONFIG_EXTRA_LDFLAGS)
Dan Albert2daceaa2014-10-20 11:37:18 -0700193 ifdef LOCAL_IS_HOST_MODULE
Dan Albert4ffe3f52014-10-20 13:30:00 -0700194 my_ldflags += $(ADDRESS_SANITIZER_CONFIG_EXTRA_LDFLAGS_HOST)
Dan Albert2daceaa2014-10-20 11:37:18 -0700195 my_ldlibs += $(ADDRESS_SANITIZER_CONFIG_EXTRA_LDLIBS_HOST)
196 my_shared_libraries += \
197 $(ADDRESS_SANITIZER_CONFIG_EXTRA_SHARED_LIBRARIES_HOST)
198 my_static_libraries += \
199 $(ADDRESS_SANITIZER_CONFIG_EXTRA_STATIC_LIBRARIES_HOST)
200 else
Dan Albert4ffe3f52014-10-20 13:30:00 -0700201 my_ldflags += $(ADDRESS_SANITIZER_CONFIG_EXTRA_LDFLAGS_TARGET)
Dan Albert2daceaa2014-10-20 11:37:18 -0700202 my_ldlibs += $(ADDRESS_SANITIZER_CONFIG_EXTRA_LDLIBS_TARGET)
203 my_shared_libraries += \
204 $(ADDRESS_SANITIZER_CONFIG_EXTRA_SHARED_LIBRARIES_TARGET)
205 my_static_libraries += \
206 $(ADDRESS_SANITIZER_CONFIG_EXTRA_STATIC_LIBRARIES_TARGET)
207 endif
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400208endif
209
Ying Wangba8b3772014-03-10 18:23:08 -0700210ifeq ($(strip $($(LOCAL_2ND_ARCH_VAR_PREFIX)WITHOUT_$(my_prefix)CLANG)),true)
Ying Wang824344a2014-05-27 13:03:36 -0700211 my_clang :=
Mike Lockwood051a1742013-06-14 10:52:50 -0700212endif
213
Shih-wei Liaoc8dfc162013-01-27 01:45:59 -0800214# Add in libcompiler_rt for all regular device builds
Mike Lockwooddaf5e222012-10-18 10:17:47 -0700215ifeq (,$(LOCAL_SDK_VERSION)$(LOCAL_IS_HOST_MODULE)$(WITHOUT_LIBCOMPILER_RT))
Ying Wang6ef65192014-01-15 16:02:16 -0800216 my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES)
Stephen Hinesc72f3962012-06-11 14:53:34 -0700217endif
218
Jing Yu2dcc8062009-09-21 16:31:50 -0700219####################################################
220## Add FDO flags if FDO is turned on and supported
221####################################################
Dehao Chenf7a909d2014-08-07 16:53:18 -0700222ifeq ($(strip $(LOCAL_FDO_SUPPORT)), true)
synergydev4a605762013-08-05 02:44:37 -0700223 ifeq ($(strip $(LOCAL_IS_HOST_MODULE)),)
Ying Wang6ef65192014-01-15 16:02:16 -0800224 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_CFLAGS)
Dehao Chenf4294cd2014-08-20 16:48:17 -0700225 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_LDFLAGS)
synergydev4a605762013-08-05 02:44:37 -0700226 endif
Jing Yu2dcc8062009-09-21 16:31:50 -0700227endif
228
The Android Open Source Project88b60792009-03-03 19:28:42 -0800229###########################################################
Jim Huang20d1ba62010-10-14 16:15:56 +0800230## Explicitly declare assembly-only __ASSEMBLY__ macro for
231## assembly source
232###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800233my_asflags += -D__ASSEMBLY__
Jim Huang20d1ba62010-10-14 16:15:56 +0800234
Ying Wangd8d37212014-03-21 16:17:04 -0700235
236##########################################################
237## Set up installed module dependency
238## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for
239## they may cusomize their install path with LOCAL_MODULE_PATH
240##########################################################
241# Get the list of INSTALLED libraries as module names.
242ifdef LOCAL_SDK_VERSION
243 installed_shared_library_module_names := \
244 $(my_shared_libraries)
245else
246 installed_shared_library_module_names := \
Dan Albert04eead72014-10-23 14:04:02 -0700247 $(my_shared_libraries) $(my_system_shared_libraries)
Ying Wangd8d37212014-03-21 16:17:04 -0700248endif
Ying Wangd8d37212014-03-21 16:17:04 -0700249
250# The real dependency will be added after all Android.mks are loaded and the install paths
251# of the shared libraries are determined.
252ifdef LOCAL_INSTALLED_MODULE
253ifdef installed_shared_library_module_names
254$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
Dan Albert04eead72014-10-23 14:04:02 -0700255 $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names)))
Ying Wangd8d37212014-03-21 16:17:04 -0700256endif
257endif
258
Jim Huang20d1ba62010-10-14 16:15:56 +0800259###########################################################
Ying Wang1a081002010-07-13 14:55:47 -0700260## Define PRIVATE_ variables from global vars
261###########################################################
Ying Wang7fff9a12014-01-09 14:39:41 -0800262ifndef LOCAL_IS_HOST_MODULE
Ying Wang848020f2012-08-14 10:13:16 -0700263ifdef LOCAL_SDK_VERSION
Ying Wang1a081002010-07-13 14:55:47 -0700264my_target_project_includes :=
Andrew Hsieh140761af02014-04-25 23:47:10 -0700265my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_sysroot_include)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800266my_target_global_cppflags := $(my_ndk_stl_cppflags)
Ying Wang1a081002010-07-13 14:55:47 -0700267else
Ying Wang6ef65192014-01-15 16:02:16 -0800268my_target_project_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES)
269my_target_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_C_INCLUDES)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800270my_target_global_cppflags :=
Ying Wangf4723fa2013-08-15 11:01:10 -0700271endif # LOCAL_SDK_VERSION
272
Ying Wang824344a2014-05-27 13:03:36 -0700273ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800274my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800275my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CPPFLAGS)
Ying Wang1f982832014-02-06 18:08:44 -0800276my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_LDFLAGS)
Ying Wangda4bf422012-08-16 16:45:01 -0700277else
Ying Wang6ef65192014-01-15 16:02:16 -0800278my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800279my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800280my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700281endif # my_clang
Ying Wangda4bf422012-08-16 16:45:01 -0700282
Dan Albert4c12c032014-10-07 23:37:53 -0700283# To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and
284# build with NATIVE_COVERAGE=true in your enviornment. Note that the build
285# system is not sensitive to changes to NATIVE_COVERAGE, so you should do a
286# clean build of your module after toggling it.
Dan Albert4bbc6c72014-09-19 14:25:57 -0700287ifeq ($(NATIVE_COVERAGE),true)
288 ifeq ($(my_native_coverage),true)
289 # We can't currently generate coverage for clang binaries for two
290 # reasons:
291 #
292 # 1) b/17574078 We currently don't have a prebuilt
293 # libclang_rt.profile-<ARCH>.a, which clang is hardcoded to link if
294 # --coverage is passed in the link stage. For now we manually link
295 # libprofile_rt (which is the name it is built as from
296 # external/compiler-rt).
297 #
298 # 2) b/17583330 Clang doesn't generate .gcno files when using
299 # -no-integrated-as. Since most of the assembly in our tree is
300 # incompatible with clang's assembler, we can't turn off this flag.
301 ifneq ($(my_clang),true)
Dan Albert4c12c032014-10-07 23:37:53 -0700302 my_cflags += --coverage -O0
303 my_ldflags += --coverage
Dan Albert4bbc6c72014-09-19 14:25:57 -0700304 endif
305 endif
306else
307 my_native_coverage := false
308endif
309
Ying Wang1a081002010-07-13 14:55:47 -0700310$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes)
Evgeniy Stepanova7095e92012-03-30 12:18:52 +0400311$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes)
Ying Wang1a081002010-07-13 14:55:47 -0700312$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800313$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags)
314$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags)
315
Ying Wang7fff9a12014-01-09 14:39:41 -0800316else # LOCAL_IS_HOST_MODULE
317
Ying Wang824344a2014-05-27 13:03:36 -0700318ifeq ($(my_clang),true)
Ying Wang6feb6d52014-04-17 10:03:35 -0700319my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CFLAGS)
320my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CPPFLAGS)
321my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_LDFLAGS)
Stephen Hinesf0089662014-09-25 22:35:16 -0700322my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Logan Chiene6f65432013-12-10 19:07:41 +0800323else
Ying Wang6feb6d52014-04-17 10:03:35 -0700324my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS)
325my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS)
326my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LDFLAGS)
327my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Ying Wang824344a2014-05-27 13:03:36 -0700328endif # my_clang
Logan Chiene6f65432013-12-10 19:07:41 +0800329
330$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_C_INCLUDES := $(my_host_c_includes)
331$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags)
332$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags)
333$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags)
334endif # LOCAL_IS_HOST_MODULE
Ying Wang1a081002010-07-13 14:55:47 -0700335
336###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800337## Define PRIVATE_ variables used by multiple module types
338###########################################################
339$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700340 $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800341
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800342ifeq ($(strip $(WITH_SYNTAX_CHECK)),)
343 LOCAL_NO_SYNTAX_CHECK := true
344endif
345
Andrew Hsieh906cb782013-09-10 17:37:14 +0800346ifeq ($(strip $(WITH_STATIC_ANALYZER)),)
347 LOCAL_NO_STATIC_ANALYZER := true
348endif
349
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800350ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
351 my_syntax_arch := host
352else
Ying Wang6ef65192014-01-15 16:02:16 -0800353 my_syntax_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800354endif
355
Ying Wang6ef65192014-01-15 16:02:16 -0800356ifeq ($(strip $(my_cc)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700357 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800358 my_cc := $(CLANG)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400359 else
Ying Wang6ef65192014-01-15 16:02:16 -0800360 my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400361 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800362endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800363ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800364 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800365else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800366ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800367 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-syntax $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800368endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800369endif
Ying Wang6ef65192014-01-15 16:02:16 -0800370$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800371
Ying Wang6ef65192014-01-15 16:02:16 -0800372ifeq ($(strip $(my_cxx)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700373 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800374 my_cxx := $(CLANG_CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400375 else
Ying Wang6ef65192014-01-15 16:02:16 -0800376 my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400377 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800378endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800379ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800380 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-analyzer $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800381else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800382ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800383 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-syntax $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800384endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800385endif
Ying Wang6ef65192014-01-15 16:02:16 -0800386$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(my_cxx)
Dan Albertb6bb71b2014-08-05 14:44:41 -0700387$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800388
389# TODO: support a mix of standard extensions so that this isn't necessary
390LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION))
391ifeq ($(LOCAL_CPP_EXTENSION),)
392 LOCAL_CPP_EXTENSION := .cpp
393endif
394$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPP_EXTENSION := $(LOCAL_CPP_EXTENSION)
395
396# Certain modules like libdl have to have symbols resolved at runtime and blow
397# up if --no-undefined is passed to the linker.
398ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),)
399ifeq ($(strip $(LOCAL_ALLOW_UNDEFINED_SYMBOLS)),)
Ying Wang6ef65192014-01-15 16:02:16 -0800400 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)NO_UNDEFINED_LDFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800401endif
402endif
403
Ying Wangfcdabd42011-04-25 14:22:41 -0700404ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES))
405$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true
406else
407$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES :=
408endif
409
The Android Open Source Project88b60792009-03-03 19:28:42 -0800410###########################################################
411## Define arm-vs-thumb-mode flags.
412###########################################################
413LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE))
Colin Cross6e087a32014-01-22 17:36:05 -0800414ifeq ($(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800415arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm)
416normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb)
417
Dave Bort95282482009-04-23 18:44:55 -0700418# Read the values from something like TARGET_arm_CFLAGS or
419# TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't
420# actually used (although they are usually empty).
Ying Wang6ef65192014-01-15 16:02:16 -0800421arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS)
422normal_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(normal_objects_mode)_CFLAGS)
Dan Albertdb905e72014-08-18 11:14:38 -0700423ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800424arm_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(arm_objects_cflags))
425normal_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(normal_objects_cflags))
Evgeniy Stepanovf50f4c52012-04-05 11:44:37 +0400426endif
427
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800428else
429arm_objects_mode :=
430normal_objects_mode :=
431arm_objects_cflags :=
432normal_objects_cflags :=
433endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800434
435###########################################################
436## Define per-module debugging flags. Users can turn on
437## debugging for a particular module by setting DEBUG_MODULE_ModuleName
438## to a non-empty value in their environment or buildspec.mk,
439## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the
440## debug flags that they want to use.
441###########################################################
442ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE))
443 debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS)
444else
445 debug_cflags :=
446endif
447
Tim Murraya7aa8002012-10-29 16:06:00 -0700448####################################################
449## Compile RenderScript with reflected C++
450####################################################
451
Ying Wangb8e01852014-01-23 15:09:04 -0800452renderscript_sources := $(filter %.rs %.fs,$(my_src_files))
Tim Murraya7aa8002012-10-29 16:06:00 -0700453
454ifneq (,$(renderscript_sources))
455
456renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
457RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp
458renderscript_intermediate := $(intermediates)/renderscript
459
460ifeq ($(LOCAL_RENDERSCRIPT_CC),)
461LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
462endif
463
464# Turn on all warnings and warnings as errors for RS compiles.
465# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
466renderscript_flags := -Wall -Werror
467renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
Ying Wangacaada12014-09-10 16:11:41 -0700468# -m32 or -m64
469renderscript_flags += -m$(my_32_64_bit_suffix)
Tim Murrayf0020c62014-09-10 15:11:01 -0700470
Ying Wang6ef65192014-01-15 16:02:16 -0800471renderscript_includes := \
Tim Murraya7aa8002012-10-29 16:06:00 -0700472 $(TOPDIR)external/clang/lib/Headers \
473 $(TOPDIR)frameworks/rs/scriptc \
474 $(LOCAL_RENDERSCRIPT_INCLUDES)
475
476ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
Ying Wang6ef65192014-01-15 16:02:16 -0800477renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
Tim Murraya7aa8002012-10-29 16:06:00 -0700478endif
479
Ying Wang6ef65192014-01-15 16:02:16 -0800480$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes)
Tim Murraya7aa8002012-10-29 16:06:00 -0700481$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
482$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
483$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
484$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate)
485$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
486 $(transform-renderscripts-to-cpp-and-bc)
487
488# include the dependency files (.d) generated by llvm-rs-cc.
489renderscript_generated_dep_files := $(addprefix $(renderscript_intermediate)/, \
490 $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
491-include $(renderscript_generated_dep_files)
492
493LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
494
495rs_generated_cpps := $(addprefix \
496 $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \
497 $(notdir $(renderscript_sources)))))
498
Stephen Hines8ff92522014-06-06 12:51:47 -0700499# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Tim Murraya7aa8002012-10-29 16:06:00 -0700500$(rs_generated_cpps) : $(RenderScript_file_stamp)
Ying Wang81ab8332014-05-28 16:17:09 -0700501 @echo "Updated RS generated cpp file $@."
Tim Murraya7aa8002012-10-29 16:06:00 -0700502
Ying Wang6ef65192014-01-15 16:02:16 -0800503my_c_includes += $(renderscript_intermediate)
504my_generated_sources += $(rs_generated_cpps)
Tim Murraya7aa8002012-10-29 16:06:00 -0700505
506endif
507
508
The Android Open Source Project88b60792009-03-03 19:28:42 -0800509###########################################################
510## Stuff source generated from one-off tools
511###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800512$(my_generated_sources): PRIVATE_MODULE := $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800513
Colin Crossd8262642014-01-24 23:17:21 -0800514my_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 -0800515
Colin Crossd8262642014-01-24 23:17:21 -0800516$(my_gen_sources_copy): $(intermediates)/% : $(generated_sources_dir)/% | $(ACP)
517 @echo "Copy: $@"
518 $(copy-file-to-target)
519
520my_generated_sources := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(my_generated_sources))
521
522ALL_GENERATED_SOURCES += $(my_generated_sources)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800523
524###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700525## Compile the .proto files to .cc and then to .o
526###########################################################
Ying Wangb8e01852014-01-23 15:09:04 -0800527proto_sources := $(filter %.proto,$(my_src_files))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700528proto_generated_objects :=
529proto_generated_headers :=
530ifneq ($(proto_sources),)
531proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
Ying Wangead89442014-02-25 11:18:40 -0800532proto_generated_cc_sources_dir := $(generated_sources_dir)/proto
Ying Wanga5fc87a2010-11-02 18:43:16 -0700533proto_generated_cc_sources := $(addprefix $(proto_generated_cc_sources_dir)/, \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700534 $(patsubst %.proto,%.pb.cc,$(proto_sources_fullpath)))
Ying Wangead89442014-02-25 11:18:40 -0800535proto_generated_headers := $(patsubst %.pb.cc,%.pb.h, $(proto_generated_cc_sources))
536proto_generated_obj_dir := $(intermediates)/proto
537proto_generated_objects := $(addprefix $(proto_generated_obj_dir)/, \
538 $(patsubst %.proto,%.pb.o,$(proto_sources_fullpath)))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700539
Ying Wang49085952014-05-06 13:03:32 -0700540# Auto-export the generated proto source dir.
541LOCAL_EXPORT_C_INCLUDE_DIRS += $(proto_generated_cc_sources_dir)
542
Ying Wangead89442014-02-25 11:18:40 -0800543# Ensure the transform-proto-to-cc rule is only defined once in multilib build.
544ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined
Ying Wanga5fc87a2010-11-02 18:43:16 -0700545$(proto_generated_cc_sources): PRIVATE_PROTO_INCLUDES := $(TOP)
546$(proto_generated_cc_sources): PRIVATE_PROTO_CC_OUTPUT_DIR := $(proto_generated_cc_sources_dir)
Ying Wang33c0d952010-11-05 11:30:58 -0700547$(proto_generated_cc_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700548$(proto_generated_cc_sources): $(proto_generated_cc_sources_dir)/%.pb.cc: %.proto $(PROTOC)
549 $(transform-proto-to-cc)
550
Stephen Hines8ff92522014-06-06 12:51:47 -0700551# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Ying Wanga5fc87a2010-11-02 18:43:16 -0700552$(proto_generated_headers): $(proto_generated_cc_sources_dir)/%.pb.h: $(proto_generated_cc_sources_dir)/%.pb.cc
Ying Wang81ab8332014-05-28 16:17:09 -0700553 @echo "Updated header file $@."
Ying Wanga5fc87a2010-11-02 18:43:16 -0700554
Ying Wangead89442014-02-25 11:18:40 -0800555$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true
556endif # transform-proto-to-cc rule included only once
557
Ying Wang022a7b32012-06-13 11:38:10 -0700558$(proto_generated_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
559$(proto_generated_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wangead89442014-02-25 11:18:40 -0800560$(proto_generated_objects): $(proto_generated_obj_dir)/%.o: $(proto_generated_cc_sources_dir)/%.cc $(proto_generated_headers)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700561 $(transform-$(PRIVATE_HOST)cpp-to-o)
562-include $(proto_generated_objects:%.o=%.P)
563
Ying Wang6ef65192014-01-15 16:02:16 -0800564my_c_includes += external/protobuf/src $(proto_generated_cc_sources_dir)
565my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI
Ying Wanga5fc87a2010-11-02 18:43:16 -0700566ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full)
Jeff Davidsonb8ddd552014-09-15 17:51:11 -0700567 ifneq ($(filter libprotobuf-cpp-2.3.0-full,$(my_static_libraries)),)
568 $(warning Stripping unneeded dependency on libprotobuf-cpp-2.3.0-full in $(LOCAL_MODULE))
569 my_static_libraries := $(filter-out libprotobuf-cpp-2.3.0-full,$(my_static_libraries))
570 endif
Dan Albertc3031c72014-11-11 10:42:17 -0800571
572 ifdef LOCAL_SDK_VERSION
573 my_static_libraries += libprotobuf-cpp-full
574 else
575 my_shared_libraries += libprotobuf-cpp-full
576 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700577else
Jeff Davidsonb8ddd552014-09-15 17:51:11 -0700578 ifneq ($(filter libprotobuf-cpp-2.3.0-lite,$(my_static_libraries)),)
579 $(warning Stripping unneeded dependency on libprotobuf-cpp-2.3.0-lite in $(LOCAL_MODULE))
580 my_static_libraries := $(filter-out libprotobuf-cpp-2.3.0-lite,$(my_static_libraries))
581 endif
Dan Albertc3031c72014-11-11 10:42:17 -0800582
583 ifdef LOCAL_SDK_VERSION
584 my_static_libraries += libprotobuf-cpp-lite
585 else
586 my_shared_libraries += libprotobuf-cpp-lite
587 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700588endif
Ying Wangead89442014-02-25 11:18:40 -0800589endif # $(proto_sources) non-empty
Ying Wanga5fc87a2010-11-02 18:43:16 -0700590
591
592###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000593## YACC: Compile .y and .yy files to .cpp and the to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800594###########################################################
595
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000596y_yacc_sources := $(filter %.y,$(my_src_files))
597y_yacc_cpps := $(addprefix \
598 $(intermediates)/,$(y_yacc_sources:.y=$(LOCAL_CPP_EXTENSION)))
599
600yy_yacc_sources := $(filter %.yy,$(my_src_files))
601yy_yacc_cpps := $(addprefix \
602 $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION)))
603
604yacc_cpps := $(y_yacc_cpps) $(yy_yacc_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800605yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h)
606yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o)
607
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000608ifneq ($(strip $(y_yacc_cpps)),)
609$(y_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700610 $(TOPDIR)$(LOCAL_PATH)/%.y \
Dan Albert954b5bd2014-11-08 22:20:03 -0800611 $(lex_cpps) $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800612 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
613$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000614endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800615
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000616ifneq ($(strip $(yy_yacc_cpps)),)
617$(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
618 $(TOPDIR)$(LOCAL_PATH)/%.yy \
Dan Albert954b5bd2014-11-08 22:20:03 -0800619 $(lex_cpps) $(my_additional_dependencies)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000620 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
621$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
622endif
623
624ifneq ($(strip $(yacc_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800625$(yacc_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
626$(yacc_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
627$(yacc_objects): $(intermediates)/%.o: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
628 $(transform-$(PRIVATE_HOST)cpp-to-o)
629endif
630
631###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000632## LEX: Compile .l and .ll files to .cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800633###########################################################
634
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000635l_lex_sources := $(filter %.l,$(my_src_files))
636l_lex_cpps := $(addprefix \
637 $(intermediates)/,$(l_lex_sources:.l=$(LOCAL_CPP_EXTENSION)))
638
639ll_lex_sources := $(filter %.ll,$(my_src_files))
640ll_lex_cpps := $(addprefix \
641 $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION)))
642
643lex_cpps := $(l_lex_cpps) $(ll_lex_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800644lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o)
645
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000646ifneq ($(strip $(l_lex_cpps)),)
647$(l_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700648 $(TOPDIR)$(LOCAL_PATH)/%.l
The Android Open Source Project88b60792009-03-03 19:28:42 -0800649 $(transform-l-to-cpp)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000650endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800651
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000652ifneq ($(strip $(ll_lex_cpps)),)
653$(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
654 $(TOPDIR)$(LOCAL_PATH)/%.ll
655 $(transform-l-to-cpp)
656endif
657
658ifneq ($(strip $(lex_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800659$(lex_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
660$(lex_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
661$(lex_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700662 $(intermediates)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800663 $(my_additional_dependencies) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700664 $(yacc_headers)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800665 $(transform-$(PRIVATE_HOST)cpp-to-o)
666endif
667
668###########################################################
669## C++: Compile .cpp files to .o.
670###########################################################
671
Jeff Browne33ba4c2011-07-11 22:11:46 -0700672# we also do this on host modules, even though
The Android Open Source Project88b60792009-03-03 19:28:42 -0800673# it's not really arm, because there are files that are shared.
Ying Wangb8e01852014-01-23 15:09:04 -0800674cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800675cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o))
676
Ying Wangb8e01852014-01-23 15:09:04 -0800677cpp_normal_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_src_files))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800678cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o))
679
680$(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
681$(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
682$(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
683$(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
684
685cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects)
686
687ifneq ($(strip $(cpp_objects)),)
688$(cpp_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700689 $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800690 $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800691 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800692 $(transform-$(PRIVATE_HOST)cpp-to-o)
693-include $(cpp_objects:%.o=%.P)
694endif
695
696###########################################################
697## C++: Compile generated .cpp files to .o.
698###########################################################
699
Ying Wangec6d6262014-01-16 16:21:03 -0800700gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800701gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o)
702
703ifneq ($(strip $(gen_cpp_objects)),)
704# Compile all generated files as thumb.
705# TODO: support compiling certain generated files as arm.
706$(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
707$(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400708$(gen_cpp_objects): $(intermediates)/%.o: \
709 $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800710 $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800711 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800712 $(transform-$(PRIVATE_HOST)cpp-to-o)
713-include $(gen_cpp_objects:%.o=%.P)
714endif
715
716###########################################################
717## S: Compile generated .S and .s files to .o.
718###########################################################
719
Ying Wangec6d6262014-01-16 16:21:03 -0800720gen_S_sources := $(filter %.S,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800721gen_S_objects := $(gen_S_sources:%.S=%.o)
722
723ifneq ($(strip $(gen_S_sources)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400724$(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800725 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800726 $(transform-$(PRIVATE_HOST)s-to-o)
727-include $(gen_S_objects:%.o=%.P)
728endif
729
Ying Wangec6d6262014-01-16 16:21:03 -0800730gen_s_sources := $(filter %.s,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800731gen_s_objects := $(gen_s_sources:%.s=%.o)
732
733ifneq ($(strip $(gen_s_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400734$(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800735 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800736 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
737-include $(gen_s_objects:%.o=%.P)
738endif
739
740gen_asm_objects := $(gen_S_objects) $(gen_s_objects)
741
742###########################################################
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000743## o: Include generated .o files in output.
744###########################################################
745
Ying Wangec6d6262014-01-16 16:21:03 -0800746gen_o_objects := $(filter %.o,$(my_generated_sources))
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000747
748###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800749## C: Compile .c files to .o.
750###########################################################
751
Ying Wangb8e01852014-01-23 15:09:04 -0800752c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800753c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o))
754
Ying Wangb8e01852014-01-23 15:09:04 -0800755c_normal_sources := $(filter %.c,$(my_src_files))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800756c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o))
757
758$(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
759$(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
760$(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
761$(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
762
763c_objects := $(c_arm_objects) $(c_normal_objects)
764
765ifneq ($(strip $(c_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400766$(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800767 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800768 $(transform-$(PRIVATE_HOST)c-to-o)
769-include $(c_objects:%.o=%.P)
770endif
771
772###########################################################
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700773## C: Compile generated .c files to .o.
774###########################################################
775
Ying Wangec6d6262014-01-16 16:21:03 -0800776gen_c_sources := $(filter %.c,$(my_generated_sources))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700777gen_c_objects := $(gen_c_sources:%.c=%.o)
778
779ifneq ($(strip $(gen_c_objects)),)
780# Compile all generated files as thumb.
781# TODO: support compiling certain generated files as arm.
782$(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
783$(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400784$(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800785 $(my_additional_dependencies)
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700786 $(transform-$(PRIVATE_HOST)c-to-o)
787-include $(gen_c_objects:%.o=%.P)
788endif
789
790###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200791## ObjC: Compile .m files to .o
792###########################################################
793
Ying Wangb8e01852014-01-23 15:09:04 -0800794objc_sources := $(filter %.m,$(my_src_files))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200795objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o))
796
797ifneq ($(strip $(objc_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400798$(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800799 $(my_additional_dependencies)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200800 $(transform-$(PRIVATE_HOST)m-to-o)
801-include $(objc_objects:%.o=%.P)
802endif
803
804###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800805## AS: Compile .S files to .o.
806###########################################################
807
Ying Wangb8e01852014-01-23 15:09:04 -0800808asm_sources_S := $(filter %.S,$(my_src_files))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800809asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o))
810
811ifneq ($(strip $(asm_objects_S)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400812$(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800813 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800814 $(transform-$(PRIVATE_HOST)s-to-o)
815-include $(asm_objects_S:%.o=%.P)
816endif
817
Ying Wangb8e01852014-01-23 15:09:04 -0800818asm_sources_s := $(filter %.s,$(my_src_files))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800819asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o))
820
821ifneq ($(strip $(asm_objects_s)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400822$(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800823 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800824 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
825-include $(asm_objects_s:%.o=%.P)
826endif
827
828asm_objects := $(asm_objects_S) $(asm_objects_s)
829
830
Ying Wang7b913ce2014-06-05 19:05:47 -0700831# .asm for x86 needs to be compiled with yasm.
832ifeq (x86,$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
833asm_sources_asm := $(filter %.asm,$(my_src_files))
834ifneq ($(strip $(asm_sources_asm)),)
835asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o))
836$(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \
Dan Albert954b5bd2014-11-08 22:20:03 -0800837 $(my_additional_dependencies)
Ying Wang7b913ce2014-06-05 19:05:47 -0700838 $(transform-asm-to-o)
839
840asm_objects += $(asm_objects_asm)
841endif
842endif
843
Ying Wang5f074802011-11-08 09:31:21 -0800844####################################################
845## Import includes
846####################################################
847import_includes := $(intermediates)/import_includes
848import_includes_deps := $(strip \
849 $(foreach l, $(installed_shared_library_module_names), \
Ying Wang6ef65192014-01-15 16:02:16 -0800850 $(call intermediates-dir-for,SHARED_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/export_includes) \
Colin Cross90353fe2014-02-04 14:53:25 -0800851 $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \
Ying Wang6ef65192014-01-15 16:02:16 -0800852 $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/export_includes))
Ying Wang5f074802011-11-08 09:31:21 -0800853$(import_includes) : $(import_includes_deps)
854 @echo Import includes file: $@
855 $(hide) mkdir -p $(dir $@) && rm -f $@
856ifdef import_includes_deps
857 $(hide) for f in $^; do \
858 cat $$f >> $@; \
859 done
860else
861 $(hide) touch $@
862endif
863
The Android Open Source Project88b60792009-03-03 19:28:42 -0800864###########################################################
865## Common object handling.
866###########################################################
867
868# some rules depend on asm_objects being first. If your code depends on
869# being first, it's reasonable to require it to be assembly
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100870normal_objects := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700871 $(asm_objects) \
872 $(cpp_objects) \
873 $(gen_cpp_objects) \
874 $(gen_asm_objects) \
875 $(c_objects) \
876 $(gen_c_objects) \
877 $(objc_objects) \
878 $(yacc_objects) \
879 $(lex_objects) \
880 $(proto_generated_objects) \
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100881 $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES))
882
883all_objects := $(normal_objects) $(gen_o_objects)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800884
Colin Cross2d206702014-02-13 13:41:52 -0800885my_c_includes += $(TOPDIR)$(LOCAL_PATH) $(intermediates) $(generated_sources_dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800886
Ying Wang848020f2012-08-14 10:13:16 -0700887ifndef LOCAL_SDK_VERSION
Ying Wang6ef65192014-01-15 16:02:16 -0800888 my_c_includes += $(JNI_H_INCLUDE)
Ying Wangbce4b752010-07-22 15:51:56 -0700889endif
890
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100891# all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES;
892# use normal_objects here to avoid creating circular dependencies. This assumes
893# that custom build rules which generate .o files don't consume other generated
894# sources as input (or if they do they take care of that dependency themselves).
Ying Wangec6d6262014-01-16 16:21:03 -0800895$(normal_objects) : | $(my_generated_sources)
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100896$(all_objects) : | $(import_includes)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800897ALL_C_CPP_ETC_OBJECTS += $(all_objects)
898
The Android Open Source Project88b60792009-03-03 19:28:42 -0800899
900###########################################################
901# Standard library handling.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800902###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800903
904###########################################################
905# The list of libraries that this module will link against are in
906# these variables. Each is a list of bare module names like "libc libm".
907#
908# LOCAL_SHARED_LIBRARIES
909# LOCAL_STATIC_LIBRARIES
910# LOCAL_WHOLE_STATIC_LIBRARIES
911#
912# We need to convert the bare names into the dependencies that
913# we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE.
914# LOCAL_BUILT_MODULE should depend on the BUILT versions of the
915# libraries, so that simply building this module doesn't force
916# an install of a library. Similarly, LOCAL_INSTALLED_MODULE
917# should depend on the INSTALLED versions of the libraries so
918# that they get installed when this module does.
919###########################################################
920# NOTE:
921# WHOLE_STATIC_LIBRARIES are libraries that are pulled into the
922# module without leaving anything out, which is useful for turning
923# a collection of .a files into a .so file. Linking against a
924# normal STATIC_LIBRARY will only pull in code/symbols that are
925# referenced by the module. (see gcc/ld's --whole-archive option)
926###########################################################
927
928# Get the list of BUILT libraries, which are under
929# various intermediates directories.
930so_suffix := $($(my_prefix)SHLIB_SUFFIX)
931a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX)
932
Ying Wang848020f2012-08-14 10:13:16 -0700933ifdef LOCAL_SDK_VERSION
The Android Open Source Project88b60792009-03-03 19:28:42 -0800934built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -0800935 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800936 $(addsuffix $(so_suffix), \
Ying Wang6ef65192014-01-15 16:02:16 -0800937 $(my_shared_libraries)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800938
Ying Wangd8d37212014-03-21 16:17:04 -0700939# Add the NDK libraries to the built module dependency
Ying Wangcce4c972011-03-03 18:53:53 -0800940my_system_shared_libraries_fullpath := \
941 $(my_ndk_stl_shared_lib_fullpath) \
Andrew Hsieh140761af02014-04-25 23:47:10 -0700942 $(addprefix $(my_ndk_sysroot_lib)/, \
Ying Wangd8d37212014-03-21 16:17:04 -0700943 $(addsuffix $(so_suffix), $(my_system_shared_libraries)))
Ying Wang1a081002010-07-13 14:55:47 -0700944
945built_shared_libraries += $(my_system_shared_libraries_fullpath)
Ying Wang1a081002010-07-13 14:55:47 -0700946else
Ying Wang1a081002010-07-13 14:55:47 -0700947built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -0800948 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
Ying Wang1a081002010-07-13 14:55:47 -0700949 $(addsuffix $(so_suffix), \
Ying Wangd8d37212014-03-21 16:17:04 -0700950 $(installed_shared_library_module_names)))
Ying Wang1a081002010-07-13 14:55:47 -0700951endif
952
The Android Open Source Project88b60792009-03-03 19:28:42 -0800953built_static_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -0800954 $(foreach lib,$(my_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800955 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -0800956 STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/$(lib)$(a_suffix))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800957
Ying Wang848020f2012-08-14 10:13:16 -0700958ifdef LOCAL_SDK_VERSION
Ying Wangcce4c972011-03-03 18:53:53 -0800959built_static_libraries += $(my_ndk_stl_static_lib)
960endif
961
The Android Open Source Project88b60792009-03-03 19:28:42 -0800962built_whole_libraries := \
Colin Cross90353fe2014-02-04 14:53:25 -0800963 $(foreach lib,$(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800964 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -0800965 STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/$(lib)$(a_suffix))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800966
The Android Open Source Project88b60792009-03-03 19:28:42 -0800967# We don't care about installed static libraries, since the
968# libraries have already been linked into the module at that point.
969# We do, however, care about the NOTICE files for any static
Steve Blockd14d3b42012-03-01 11:34:41 +0000970# libraries that we use. (see notice_files.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800971
972installed_static_library_notice_file_targets := \
Colin Cross90353fe2014-02-04 14:53:25 -0800973 $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800974 NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib))
975
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700976# Default is -fno-rtti.
Doug Kwane3c3c6d2011-06-07 10:55:48 -0700977ifeq ($(strip $(LOCAL_RTTI_FLAG)),)
978LOCAL_RTTI_FLAG := -fno-rtti
979endif
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700980
The Android Open Source Project88b60792009-03-03 19:28:42 -0800981###########################################################
982# Rule-specific variable definitions
983###########################################################
Logan Chiene6f65432013-12-10 19:07:41 +0800984
Ying Wang824344a2014-05-27 13:03:36 -0700985ifeq ($(my_clang),true)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -0700986my_cflags += $(LOCAL_CLANG_CFLAGS)
Dan Albertd2fa96d2014-11-28 14:00:12 -0800987my_cppflags += $(LOCAL_CLANG_CPPFLAGS)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -0700988my_asflags += $(LOCAL_CLANG_ASFLAGS)
989my_ldflags += $(LOCAL_CLANG_LDFLAGS)
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -0700990my_cflags += $(LOCAL_CLANG_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CFLAGS_$(my_32_64_bit_suffix))
991my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix))
992my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix))
993my_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 -0800994my_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cflags))
995my_cppflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cppflags))
996my_asflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_asflags))
997my_ldflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_ldflags))
Logan Chiene6f65432013-12-10 19:07:41 +0800998endif
999
The Android Open Source Project88b60792009-03-03 19:28:42 -08001000$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -08001001$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags)
Ying Wang7429e212012-08-15 10:59:10 -07001002$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(LOCAL_CONLYFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -08001003$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags)
1004$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags)
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001005$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001006$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001007$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes)
Ying Wang5f074802011-11-08 09:31:21 -08001008$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes)
Ying Wang6ef65192014-01-15 16:02:16 -08001009$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags)
Dan Albertb05f2ca2014-09-12 14:46:57 -07001010$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs)
Ying Wangb8e01852014-01-23 15:09:04 -08001011$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_CRT := $(strip $(LOCAL_NO_CRT) $(LOCAL_NO_CRT_$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001012
1013# this is really the way to get the files onto the command line instead
1014# of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work
1015$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries)
1016$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries)
1017$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries)
1018$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects)
1019
1020###########################################################
1021# Define library dependencies.
1022###########################################################
1023# all_libraries is used for the dependencies on LOCAL_BUILT_MODULE.
1024all_libraries := \
1025 $(built_shared_libraries) \
1026 $(built_static_libraries) \
1027 $(built_whole_libraries)
1028
The Android Open Source Project88b60792009-03-03 19:28:42 -08001029# Also depend on the notice files for any static libraries that
1030# are linked into this module. This will force them to be installed
1031# when this module is.
1032$(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets)
Ying Wang5f074802011-11-08 09:31:21 -08001033
1034###########################################################
1035# Export includes
1036###########################################################
1037export_includes := $(intermediates)/export_includes
1038$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(LOCAL_EXPORT_C_INCLUDE_DIRS)
Ying Wang49085952014-05-06 13:03:32 -07001039# Make sure .pb.h are already generated before any dependent source files get compiled.
1040$(export_includes) : $(LOCAL_MODULE_MAKEFILE) $(proto_generated_headers)
Ying Wang5f074802011-11-08 09:31:21 -08001041 @echo Export includes file: $< -- $@
1042 $(hide) mkdir -p $(dir $@) && rm -f $@
1043ifdef LOCAL_EXPORT_C_INCLUDE_DIRS
1044 $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
1045 echo "-I $$d" >> $@; \
1046 done
1047else
1048 $(hide) touch $@
1049endif
Ying Wang616e5962012-04-18 17:35:55 -07001050
1051# Make sure export_includes gets generated when you are running mm/mmm
1052$(LOCAL_BUILT_MODULE) : | $(export_includes)