blob: 9f17fd5152d19200612ae7cd642dc572699ac2b9 [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
Andrew Hsieh140761af02014-04-25 23:47:10 -070012my_ndk_sysroot :=
13my_ndk_sysroot_include :=
14my_ndk_sysroot_lib :=
Ying Wang848020f2012-08-14 10:13:16 -070015ifdef LOCAL_SDK_VERSION
Ying Wangfe1bfe72012-08-14 11:08:03 -070016 ifdef LOCAL_NDK_VERSION
17 $(error $(LOCAL_PATH): LOCAL_NDK_VERSION is now retired.)
18 endif
Ying Wang1a081002010-07-13 14:55:47 -070019 ifdef LOCAL_IS_HOST_MODULE
Ian Rogers76a6dc32012-10-01 16:36:23 -070020 $(error $(LOCAL_PATH): LOCAL_SDK_VERSION cannot be used in host module)
Ying Wang1a081002010-07-13 14:55:47 -070021 endif
Ying Wang848020f2012-08-14 10:13:16 -070022 my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/sources
Andrew Hsieh140761af02014-04-25 23:47:10 -070023 my_ndk_sysroot := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
24 my_ndk_sysroot_include := $(my_ndk_sysroot)/usr/include
25 ifeq (x86_64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
26 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib64
27 else
28 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib
29 endif
Ying Wangcce4c972011-03-03 18:53:53 -080030
31 # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location.
32 # See ndk/docs/CPLUSPLUS-SUPPORT.html
33 my_ndk_stl_include_path :=
34 my_ndk_stl_shared_lib_fullpath :=
35 my_ndk_stl_shared_lib :=
36 my_ndk_stl_static_lib :=
Andrew Hsieh73d800e2014-03-04 17:11:52 +080037 my_ndk_stl_cppflags :=
38 LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -080039 ifeq (,$(LOCAL_NDK_STL_VARIANT))
40 LOCAL_NDK_STL_VARIANT := system
41 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +080042 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 -070043 $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -080044 endif
45 ifeq (system,$(LOCAL_NDK_STL_VARIANT))
46 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
47 # for "system" variant, the shared library exists in the system library and -lstdc++ is added by default.
48 else # LOCAL_NDK_STL_VARIANT is not system
49 ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
50 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
51 ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
Ying Wang6ef65192014-01-15 16:02:16 -080052 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 -080053 else
Ying Wang6ef65192014-01-15 16:02:16 -080054 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 -080055 my_ndk_stl_shared_lib := -lstlport_shared
56 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +080057 else # LOCAL_NDK_STL_VARIANT is not stlport_* either
58 ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
59 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include \
60 $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include \
61 $(my_ndk_source_root)/android/support/include
62 ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
63 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
64 else
65 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
66 my_ndk_stl_shared_lib := -lc++_shared
67 endif
68 my_ndk_stl_cppflags := -std=c++11
Ying Wangcce4c972011-03-03 18:53:53 -080069 else
70 # LOCAL_NDK_STL_VARIANT is gnustl_static
Ben Cheng4de6fa42014-04-10 22:46:26 -070071 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 \
72 $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/include
73 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 -080074 endif
75 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +080076 endif
Ying Wang1a081002010-07-13 14:55:47 -070077endif
78
Ying Wang704c0c92011-09-15 13:50:52 -070079##################################################
80# Compute the dependency of the shared libraries
81##################################################
82# On the target, we compile with -nostdlib, so we must add in the
83# default system shared libraries, unless they have requested not
84# to by supplying a LOCAL_SYSTEM_SHARED_LIBRARIES value. One would
85# supply that, for example, when building libc itself.
86ifdef LOCAL_IS_HOST_MODULE
87 ifeq ($(LOCAL_SYSTEM_SHARED_LIBRARIES),none)
Ying Wangd8d37212014-03-21 16:17:04 -070088 my_system_shared_libraries :=
89 else
90 my_system_shared_libraries := $(LOCAL_SYSTEM_SHARED_LIBRARIES)
Ying Wang704c0c92011-09-15 13:50:52 -070091 endif
92else
93 ifeq ($(LOCAL_SYSTEM_SHARED_LIBRARIES),none)
Ying Wangd8d37212014-03-21 16:17:04 -070094 my_system_shared_libraries := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES)
95 else
96 my_system_shared_libraries := $(LOCAL_SYSTEM_SHARED_LIBRARIES)
Ying Wang704c0c92011-09-15 13:50:52 -070097 endif
98endif
99
Ying Wang6ef65192014-01-15 16:02:16 -0800100# The following LOCAL_ variables will be modified in this file.
101# Because the same LOCAL_ variables may be used to define modules for both 1st arch and 2nd arch,
102# we can't modify them in place.
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800103my_src_files := $(LOCAL_SRC_FILES)
104my_static_libraries := $(LOCAL_STATIC_LIBRARIES)
105my_whole_static_libraries := $(LOCAL_WHOLE_STATIC_LIBRARIES)
106my_shared_libraries := $(LOCAL_SHARED_LIBRARIES)
107my_cflags := $(LOCAL_CFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800108my_cppflags := $(LOCAL_CPPFLAGS)
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800109my_ldflags := $(LOCAL_LDFLAGS)
Dan Albertb05f2ca2014-09-12 14:46:57 -0700110my_ldlibs := $(LOCAL_LDLIBS)
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800111my_asflags := $(LOCAL_ASFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800112my_cc := $(LOCAL_CC)
113my_cxx := $(LOCAL_CXX)
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800114my_c_includes := $(LOCAL_C_INCLUDES)
115my_generated_sources := $(LOCAL_GENERATED_SOURCES)
Dan Albert4bbc6c72014-09-19 14:25:57 -0700116my_native_coverage := $(LOCAL_NATIVE_COVERAGE)
Dan Albert954b5bd2014-11-08 22:20:03 -0800117my_additional_dependencies := $(LOCAL_MODULE_MAKEFILE) $(LOCAL_ADDITIONAL_DEPENDENCIES)
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800118
Dan Albert95994de2014-08-07 18:29:11 -0700119# MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
120# all code is position independent, and then those warnings get promoted to
121# errors.
Ying Wang594a10a2014-08-07 20:08:04 -0700122ifndef USE_MINGW
Dan Albert4803ce22014-08-06 12:36:46 -0700123ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES)
124my_cflags += -fpie
125else
126my_cflags += -fPIC
127endif
Dan Albert95994de2014-08-07 18:29:11 -0700128endif
Dan Albert4803ce22014-08-06 12:36:46 -0700129
Ying Wang6feb6d52014-04-17 10:03:35 -0700130my_src_files += $(LOCAL_SRC_FILES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SRC_FILES_$(my_32_64_bit_suffix))
131my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix))
132my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix))
133my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix))
134my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix))
135my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix))
136my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix))
137my_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 -0800138
Dan Albertdb905e72014-08-18 11:14:38 -0700139my_clang := $(strip $(LOCAL_CLANG))
Ying Wang824344a2014-05-27 13:03:36 -0700140ifdef LOCAL_CLANG_$(my_32_64_bit_suffix)
Dan Albertdb905e72014-08-18 11:14:38 -0700141my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix)))
Ying Wang824344a2014-05-27 13:03:36 -0700142endif
143ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Dan Albertdb905e72014-08-18 11:14:38 -0700144my_clang := $(strip $(LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Ying Wang824344a2014-05-27 13:03:36 -0700145endif
146
Tim Murray92d79cb2014-04-04 14:38:29 -0700147# clang is enabled by default for host builds
148# enable it unless we've specifically disabled clang above
149ifdef LOCAL_IS_HOST_MODULE
Tim Murrayf3ca3d52014-07-24 15:20:18 -0700150 ifneq ($(HOST_OS),windows)
Tim Murray5ca1dc12014-07-24 14:42:53 -0700151 ifeq ($(my_clang),)
152 my_clang := true
153 endif
154 endif
Tim Murray92d79cb2014-04-04 14:38:29 -0700155endif
156
Tim Murray06659bc2014-08-13 11:53:07 -0700157# Add option to make clang the default for device build
158ifeq ($(USE_CLANG_PLATFORM_BUILD),true)
159 ifeq ($(my_clang),)
160 my_clang := true
161 endif
162endif
163
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800164# arch-specific static libraries go first so that generic ones can depend on them
Ying Wang6feb6d52014-04-17 10:03:35 -0700165my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries)
166my_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 -0800167
Ying Wang6feb6d52014-04-17 10:03:35 -0700168my_cflags := $(filter-out $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_UNSUPPORTED_CFLAGS),$(my_cflags))
Ying Wang6ef65192014-01-15 16:02:16 -0800169
Ying Wang75e8fcb2014-10-07 13:03:29 -0700170include $(BUILD_SYSTEM)/cxx_stl_setup.mk
Ying Wangd90de322014-05-23 16:42:37 -0700171
Ying Wang285045b2013-08-13 12:35:10 -0700172# Add static HAL libraries
173ifdef LOCAL_HAL_STATIC_LIBRARIES
174$(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \
175 $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\
Ying Wang6ef65192014-01-15 16:02:16 -0800176 $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\
177 $(eval my_static_libraries += $(lib).default)))
Ying Wang285045b2013-08-13 12:35:10 -0700178b_lib :=
179endif
180
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400181ifeq ($(strip $(LOCAL_ADDRESS_SANITIZER)),true)
Ying Wang824344a2014-05-27 13:03:36 -0700182 my_clang := true
Evgeniy Stepanov5d8029f2014-02-21 18:10:53 +0400183 # Frame pointer based unwinder in ASan requires ARM frame setup.
184 LOCAL_ARM_MODE := arm
Ying Wang6ef65192014-01-15 16:02:16 -0800185 my_cflags += $(ADDRESS_SANITIZER_CONFIG_EXTRA_CFLAGS)
186 my_ldflags += $(ADDRESS_SANITIZER_CONFIG_EXTRA_LDFLAGS)
Dan Albert2daceaa2014-10-20 11:37:18 -0700187 ifdef LOCAL_IS_HOST_MODULE
Dan Albert4ffe3f52014-10-20 13:30:00 -0700188 my_ldflags += $(ADDRESS_SANITIZER_CONFIG_EXTRA_LDFLAGS_HOST)
Dan Albert2daceaa2014-10-20 11:37:18 -0700189 my_ldlibs += $(ADDRESS_SANITIZER_CONFIG_EXTRA_LDLIBS_HOST)
190 my_shared_libraries += \
191 $(ADDRESS_SANITIZER_CONFIG_EXTRA_SHARED_LIBRARIES_HOST)
192 my_static_libraries += \
193 $(ADDRESS_SANITIZER_CONFIG_EXTRA_STATIC_LIBRARIES_HOST)
194 else
Dan Albert4ffe3f52014-10-20 13:30:00 -0700195 my_ldflags += $(ADDRESS_SANITIZER_CONFIG_EXTRA_LDFLAGS_TARGET)
Dan Albert2daceaa2014-10-20 11:37:18 -0700196 my_ldlibs += $(ADDRESS_SANITIZER_CONFIG_EXTRA_LDLIBS_TARGET)
197 my_shared_libraries += \
198 $(ADDRESS_SANITIZER_CONFIG_EXTRA_SHARED_LIBRARIES_TARGET)
199 my_static_libraries += \
200 $(ADDRESS_SANITIZER_CONFIG_EXTRA_STATIC_LIBRARIES_TARGET)
201 endif
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400202endif
203
Ying Wangba8b3772014-03-10 18:23:08 -0700204ifeq ($(strip $($(LOCAL_2ND_ARCH_VAR_PREFIX)WITHOUT_$(my_prefix)CLANG)),true)
Ying Wang824344a2014-05-27 13:03:36 -0700205 my_clang :=
Mike Lockwood051a1742013-06-14 10:52:50 -0700206endif
207
Shih-wei Liaoc8dfc162013-01-27 01:45:59 -0800208# Add in libcompiler_rt for all regular device builds
Mike Lockwooddaf5e222012-10-18 10:17:47 -0700209ifeq (,$(LOCAL_SDK_VERSION)$(LOCAL_IS_HOST_MODULE)$(WITHOUT_LIBCOMPILER_RT))
Ying Wang6ef65192014-01-15 16:02:16 -0800210 my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES)
Stephen Hinesc72f3962012-06-11 14:53:34 -0700211endif
212
Jing Yu2dcc8062009-09-21 16:31:50 -0700213####################################################
214## Add FDO flags if FDO is turned on and supported
215####################################################
Dehao Chenf7a909d2014-08-07 16:53:18 -0700216ifeq ($(strip $(LOCAL_FDO_SUPPORT)), true)
synergydev4a605762013-08-05 02:44:37 -0700217 ifeq ($(strip $(LOCAL_IS_HOST_MODULE)),)
Ying Wang6ef65192014-01-15 16:02:16 -0800218 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_CFLAGS)
Dehao Chenf4294cd2014-08-20 16:48:17 -0700219 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_LDFLAGS)
synergydev4a605762013-08-05 02:44:37 -0700220 endif
Jing Yu2dcc8062009-09-21 16:31:50 -0700221endif
222
The Android Open Source Project88b60792009-03-03 19:28:42 -0800223###########################################################
Jim Huang20d1ba62010-10-14 16:15:56 +0800224## Explicitly declare assembly-only __ASSEMBLY__ macro for
225## assembly source
226###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800227my_asflags += -D__ASSEMBLY__
Jim Huang20d1ba62010-10-14 16:15:56 +0800228
Ying Wangd8d37212014-03-21 16:17:04 -0700229
230##########################################################
231## Set up installed module dependency
232## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for
233## they may cusomize their install path with LOCAL_MODULE_PATH
234##########################################################
235# Get the list of INSTALLED libraries as module names.
236ifdef LOCAL_SDK_VERSION
237 installed_shared_library_module_names := \
238 $(my_shared_libraries)
239else
240 installed_shared_library_module_names := \
Dan Albert04eead72014-10-23 14:04:02 -0700241 $(my_shared_libraries) $(my_system_shared_libraries)
Ying Wangd8d37212014-03-21 16:17:04 -0700242endif
Ying Wangd8d37212014-03-21 16:17:04 -0700243
244# The real dependency will be added after all Android.mks are loaded and the install paths
245# of the shared libraries are determined.
246ifdef LOCAL_INSTALLED_MODULE
247ifdef installed_shared_library_module_names
248$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
Dan Albert04eead72014-10-23 14:04:02 -0700249 $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names)))
Ying Wangd8d37212014-03-21 16:17:04 -0700250endif
251endif
252
Jim Huang20d1ba62010-10-14 16:15:56 +0800253###########################################################
Ying Wang1a081002010-07-13 14:55:47 -0700254## Define PRIVATE_ variables from global vars
255###########################################################
Ying Wang7fff9a12014-01-09 14:39:41 -0800256ifndef LOCAL_IS_HOST_MODULE
Ying Wang848020f2012-08-14 10:13:16 -0700257ifdef LOCAL_SDK_VERSION
Ying Wang1a081002010-07-13 14:55:47 -0700258my_target_project_includes :=
Andrew Hsieh140761af02014-04-25 23:47:10 -0700259my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_sysroot_include)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800260my_target_global_cppflags := $(my_ndk_stl_cppflags)
Ying Wang1a081002010-07-13 14:55:47 -0700261else
Ying Wang6ef65192014-01-15 16:02:16 -0800262my_target_project_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES)
263my_target_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_C_INCLUDES)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800264my_target_global_cppflags :=
Ying Wangf4723fa2013-08-15 11:01:10 -0700265endif # LOCAL_SDK_VERSION
266
Ying Wang824344a2014-05-27 13:03:36 -0700267ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800268my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800269my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CPPFLAGS)
Ying Wang1f982832014-02-06 18:08:44 -0800270my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_LDFLAGS)
Ying Wangda4bf422012-08-16 16:45:01 -0700271else
Ying Wang6ef65192014-01-15 16:02:16 -0800272my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800273my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800274my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700275endif # my_clang
Ying Wangda4bf422012-08-16 16:45:01 -0700276
Dan Albert4c12c032014-10-07 23:37:53 -0700277# To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and
278# build with NATIVE_COVERAGE=true in your enviornment. Note that the build
279# system is not sensitive to changes to NATIVE_COVERAGE, so you should do a
280# clean build of your module after toggling it.
Dan Albert4bbc6c72014-09-19 14:25:57 -0700281ifeq ($(NATIVE_COVERAGE),true)
282 ifeq ($(my_native_coverage),true)
283 # We can't currently generate coverage for clang binaries for two
284 # reasons:
285 #
286 # 1) b/17574078 We currently don't have a prebuilt
287 # libclang_rt.profile-<ARCH>.a, which clang is hardcoded to link if
288 # --coverage is passed in the link stage. For now we manually link
289 # libprofile_rt (which is the name it is built as from
290 # external/compiler-rt).
291 #
292 # 2) b/17583330 Clang doesn't generate .gcno files when using
293 # -no-integrated-as. Since most of the assembly in our tree is
294 # incompatible with clang's assembler, we can't turn off this flag.
295 ifneq ($(my_clang),true)
Dan Albert4c12c032014-10-07 23:37:53 -0700296 my_cflags += --coverage -O0
297 my_ldflags += --coverage
Dan Albert4bbc6c72014-09-19 14:25:57 -0700298 endif
299 endif
300else
301 my_native_coverage := false
302endif
303
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)
Logan Chiene6f65432013-12-10 19:07:41 +0800307$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags)
308$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags)
309
Ying Wang7fff9a12014-01-09 14:39:41 -0800310else # LOCAL_IS_HOST_MODULE
311
Ying Wang824344a2014-05-27 13:03:36 -0700312ifeq ($(my_clang),true)
Ying Wang6feb6d52014-04-17 10:03:35 -0700313my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CFLAGS)
314my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CPPFLAGS)
315my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_LDFLAGS)
Stephen Hinesf0089662014-09-25 22:35:16 -0700316my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Logan Chiene6f65432013-12-10 19:07:41 +0800317else
Ying Wang6feb6d52014-04-17 10:03:35 -0700318my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS)
319my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS)
320my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LDFLAGS)
321my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Ying Wang824344a2014-05-27 13:03:36 -0700322endif # my_clang
Logan Chiene6f65432013-12-10 19:07:41 +0800323
324$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_C_INCLUDES := $(my_host_c_includes)
325$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags)
326$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags)
327$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags)
328endif # LOCAL_IS_HOST_MODULE
Ying Wang1a081002010-07-13 14:55:47 -0700329
330###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800331## Define PRIVATE_ variables used by multiple module types
332###########################################################
333$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700334 $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800335
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800336ifeq ($(strip $(WITH_SYNTAX_CHECK)),)
337 LOCAL_NO_SYNTAX_CHECK := true
338endif
339
Andrew Hsieh906cb782013-09-10 17:37:14 +0800340ifeq ($(strip $(WITH_STATIC_ANALYZER)),)
341 LOCAL_NO_STATIC_ANALYZER := true
342endif
343
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800344ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
345 my_syntax_arch := host
346else
Ying Wang6ef65192014-01-15 16:02:16 -0800347 my_syntax_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800348endif
349
Ying Wang6ef65192014-01-15 16:02:16 -0800350ifeq ($(strip $(my_cc)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700351 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800352 my_cc := $(CLANG)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400353 else
Ying Wang6ef65192014-01-15 16:02:16 -0800354 my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400355 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800356endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800357ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800358 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800359else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800360ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800361 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-syntax $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800362endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800363endif
Ying Wang6ef65192014-01-15 16:02:16 -0800364$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800365
Ying Wang6ef65192014-01-15 16:02:16 -0800366ifeq ($(strip $(my_cxx)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700367 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800368 my_cxx := $(CLANG_CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400369 else
Ying Wang6ef65192014-01-15 16:02:16 -0800370 my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400371 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800372endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800373ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800374 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-analyzer $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800375else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800376ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800377 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-syntax $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800378endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800379endif
Ying Wang6ef65192014-01-15 16:02:16 -0800380$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(my_cxx)
Dan Albertb6bb71b2014-08-05 14:44:41 -0700381$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800382
383# TODO: support a mix of standard extensions so that this isn't necessary
384LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION))
385ifeq ($(LOCAL_CPP_EXTENSION),)
386 LOCAL_CPP_EXTENSION := .cpp
387endif
388$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPP_EXTENSION := $(LOCAL_CPP_EXTENSION)
389
390# Certain modules like libdl have to have symbols resolved at runtime and blow
391# up if --no-undefined is passed to the linker.
392ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),)
393ifeq ($(strip $(LOCAL_ALLOW_UNDEFINED_SYMBOLS)),)
Ying Wang6ef65192014-01-15 16:02:16 -0800394 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)NO_UNDEFINED_LDFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800395endif
396endif
397
Ying Wangfcdabd42011-04-25 14:22:41 -0700398ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES))
399$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true
400else
401$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES :=
402endif
403
The Android Open Source Project88b60792009-03-03 19:28:42 -0800404###########################################################
405## Define arm-vs-thumb-mode flags.
406###########################################################
407LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE))
Colin Cross6e087a32014-01-22 17:36:05 -0800408ifeq ($(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800409arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm)
410normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb)
411
Dave Bort95282482009-04-23 18:44:55 -0700412# Read the values from something like TARGET_arm_CFLAGS or
413# TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't
414# actually used (although they are usually empty).
Ying Wang6ef65192014-01-15 16:02:16 -0800415arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS)
416normal_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(normal_objects_mode)_CFLAGS)
Dan Albertdb905e72014-08-18 11:14:38 -0700417ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800418arm_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(arm_objects_cflags))
419normal_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(normal_objects_cflags))
Evgeniy Stepanovf50f4c52012-04-05 11:44:37 +0400420endif
421
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800422else
423arm_objects_mode :=
424normal_objects_mode :=
425arm_objects_cflags :=
426normal_objects_cflags :=
427endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800428
429###########################################################
430## Define per-module debugging flags. Users can turn on
431## debugging for a particular module by setting DEBUG_MODULE_ModuleName
432## to a non-empty value in their environment or buildspec.mk,
433## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the
434## debug flags that they want to use.
435###########################################################
436ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE))
437 debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS)
438else
439 debug_cflags :=
440endif
441
Tim Murraya7aa8002012-10-29 16:06:00 -0700442####################################################
443## Compile RenderScript with reflected C++
444####################################################
445
Ying Wangb8e01852014-01-23 15:09:04 -0800446renderscript_sources := $(filter %.rs %.fs,$(my_src_files))
Tim Murraya7aa8002012-10-29 16:06:00 -0700447
448ifneq (,$(renderscript_sources))
449
450renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
451RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp
452renderscript_intermediate := $(intermediates)/renderscript
453
454ifeq ($(LOCAL_RENDERSCRIPT_CC),)
455LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
456endif
457
458# Turn on all warnings and warnings as errors for RS compiles.
459# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
460renderscript_flags := -Wall -Werror
461renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
Ying Wangacaada12014-09-10 16:11:41 -0700462# -m32 or -m64
463renderscript_flags += -m$(my_32_64_bit_suffix)
Tim Murrayf0020c62014-09-10 15:11:01 -0700464
Ying Wang6ef65192014-01-15 16:02:16 -0800465renderscript_includes := \
Tim Murraya7aa8002012-10-29 16:06:00 -0700466 $(TOPDIR)external/clang/lib/Headers \
467 $(TOPDIR)frameworks/rs/scriptc \
468 $(LOCAL_RENDERSCRIPT_INCLUDES)
469
470ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
Ying Wang6ef65192014-01-15 16:02:16 -0800471renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
Tim Murraya7aa8002012-10-29 16:06:00 -0700472endif
473
Ying Wang6ef65192014-01-15 16:02:16 -0800474$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes)
Tim Murraya7aa8002012-10-29 16:06:00 -0700475$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
476$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
477$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
478$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate)
479$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
480 $(transform-renderscripts-to-cpp-and-bc)
481
482# include the dependency files (.d) generated by llvm-rs-cc.
483renderscript_generated_dep_files := $(addprefix $(renderscript_intermediate)/, \
484 $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
485-include $(renderscript_generated_dep_files)
486
487LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
488
489rs_generated_cpps := $(addprefix \
490 $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \
491 $(notdir $(renderscript_sources)))))
492
Stephen Hines8ff92522014-06-06 12:51:47 -0700493# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Tim Murraya7aa8002012-10-29 16:06:00 -0700494$(rs_generated_cpps) : $(RenderScript_file_stamp)
Ying Wang81ab8332014-05-28 16:17:09 -0700495 @echo "Updated RS generated cpp file $@."
Tim Murraya7aa8002012-10-29 16:06:00 -0700496
Ying Wang6ef65192014-01-15 16:02:16 -0800497my_c_includes += $(renderscript_intermediate)
498my_generated_sources += $(rs_generated_cpps)
Tim Murraya7aa8002012-10-29 16:06:00 -0700499
500endif
501
502
The Android Open Source Project88b60792009-03-03 19:28:42 -0800503###########################################################
504## Stuff source generated from one-off tools
505###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800506$(my_generated_sources): PRIVATE_MODULE := $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800507
Colin Crossd8262642014-01-24 23:17:21 -0800508my_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 -0800509
Colin Crossd8262642014-01-24 23:17:21 -0800510$(my_gen_sources_copy): $(intermediates)/% : $(generated_sources_dir)/% | $(ACP)
511 @echo "Copy: $@"
512 $(copy-file-to-target)
513
514my_generated_sources := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(my_generated_sources))
515
516ALL_GENERATED_SOURCES += $(my_generated_sources)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800517
518###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700519## Compile the .proto files to .cc and then to .o
520###########################################################
Ying Wangb8e01852014-01-23 15:09:04 -0800521proto_sources := $(filter %.proto,$(my_src_files))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700522proto_generated_objects :=
523proto_generated_headers :=
524ifneq ($(proto_sources),)
525proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
Ying Wangead89442014-02-25 11:18:40 -0800526proto_generated_cc_sources_dir := $(generated_sources_dir)/proto
Ying Wanga5fc87a2010-11-02 18:43:16 -0700527proto_generated_cc_sources := $(addprefix $(proto_generated_cc_sources_dir)/, \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700528 $(patsubst %.proto,%.pb.cc,$(proto_sources_fullpath)))
Ying Wangead89442014-02-25 11:18:40 -0800529proto_generated_headers := $(patsubst %.pb.cc,%.pb.h, $(proto_generated_cc_sources))
530proto_generated_obj_dir := $(intermediates)/proto
531proto_generated_objects := $(addprefix $(proto_generated_obj_dir)/, \
532 $(patsubst %.proto,%.pb.o,$(proto_sources_fullpath)))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700533
Ying Wang49085952014-05-06 13:03:32 -0700534# Auto-export the generated proto source dir.
535LOCAL_EXPORT_C_INCLUDE_DIRS += $(proto_generated_cc_sources_dir)
536
Ying Wangead89442014-02-25 11:18:40 -0800537# Ensure the transform-proto-to-cc rule is only defined once in multilib build.
538ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined
Ying Wanga5fc87a2010-11-02 18:43:16 -0700539$(proto_generated_cc_sources): PRIVATE_PROTO_INCLUDES := $(TOP)
540$(proto_generated_cc_sources): PRIVATE_PROTO_CC_OUTPUT_DIR := $(proto_generated_cc_sources_dir)
Ying Wang33c0d952010-11-05 11:30:58 -0700541$(proto_generated_cc_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700542$(proto_generated_cc_sources): $(proto_generated_cc_sources_dir)/%.pb.cc: %.proto $(PROTOC)
543 $(transform-proto-to-cc)
544
Stephen Hines8ff92522014-06-06 12:51:47 -0700545# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Ying Wanga5fc87a2010-11-02 18:43:16 -0700546$(proto_generated_headers): $(proto_generated_cc_sources_dir)/%.pb.h: $(proto_generated_cc_sources_dir)/%.pb.cc
Ying Wang81ab8332014-05-28 16:17:09 -0700547 @echo "Updated header file $@."
Ying Wanga5fc87a2010-11-02 18:43:16 -0700548
Ying Wangead89442014-02-25 11:18:40 -0800549$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true
550endif # transform-proto-to-cc rule included only once
551
Ying Wang022a7b32012-06-13 11:38:10 -0700552$(proto_generated_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
553$(proto_generated_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wangead89442014-02-25 11:18:40 -0800554$(proto_generated_objects): $(proto_generated_obj_dir)/%.o: $(proto_generated_cc_sources_dir)/%.cc $(proto_generated_headers)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700555 $(transform-$(PRIVATE_HOST)cpp-to-o)
556-include $(proto_generated_objects:%.o=%.P)
557
Ying Wang6ef65192014-01-15 16:02:16 -0800558my_c_includes += external/protobuf/src $(proto_generated_cc_sources_dir)
559my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI
Ying Wanga5fc87a2010-11-02 18:43:16 -0700560ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full)
Jeff Davidsonb8ddd552014-09-15 17:51:11 -0700561 ifneq ($(filter libprotobuf-cpp-2.3.0-full,$(my_static_libraries)),)
562 $(warning Stripping unneeded dependency on libprotobuf-cpp-2.3.0-full in $(LOCAL_MODULE))
563 my_static_libraries := $(filter-out libprotobuf-cpp-2.3.0-full,$(my_static_libraries))
564 endif
Dan Albertc3031c72014-11-11 10:42:17 -0800565
566 ifdef LOCAL_SDK_VERSION
567 my_static_libraries += libprotobuf-cpp-full
568 else
569 my_shared_libraries += libprotobuf-cpp-full
570 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700571else
Jeff Davidsonb8ddd552014-09-15 17:51:11 -0700572 ifneq ($(filter libprotobuf-cpp-2.3.0-lite,$(my_static_libraries)),)
573 $(warning Stripping unneeded dependency on libprotobuf-cpp-2.3.0-lite in $(LOCAL_MODULE))
574 my_static_libraries := $(filter-out libprotobuf-cpp-2.3.0-lite,$(my_static_libraries))
575 endif
Dan Albertc3031c72014-11-11 10:42:17 -0800576
577 ifdef LOCAL_SDK_VERSION
578 my_static_libraries += libprotobuf-cpp-lite
579 else
580 my_shared_libraries += libprotobuf-cpp-lite
581 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700582endif
Ying Wangead89442014-02-25 11:18:40 -0800583endif # $(proto_sources) non-empty
Ying Wanga5fc87a2010-11-02 18:43:16 -0700584
585
586###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000587## YACC: Compile .y and .yy files to .cpp and the to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800588###########################################################
589
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000590y_yacc_sources := $(filter %.y,$(my_src_files))
591y_yacc_cpps := $(addprefix \
592 $(intermediates)/,$(y_yacc_sources:.y=$(LOCAL_CPP_EXTENSION)))
593
594yy_yacc_sources := $(filter %.yy,$(my_src_files))
595yy_yacc_cpps := $(addprefix \
596 $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION)))
597
598yacc_cpps := $(y_yacc_cpps) $(yy_yacc_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800599yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h)
600yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o)
601
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000602ifneq ($(strip $(y_yacc_cpps)),)
603$(y_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700604 $(TOPDIR)$(LOCAL_PATH)/%.y \
Dan Albert954b5bd2014-11-08 22:20:03 -0800605 $(lex_cpps) $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800606 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
607$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000608endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800609
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000610ifneq ($(strip $(yy_yacc_cpps)),)
611$(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
612 $(TOPDIR)$(LOCAL_PATH)/%.yy \
Dan Albert954b5bd2014-11-08 22:20:03 -0800613 $(lex_cpps) $(my_additional_dependencies)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000614 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
615$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
616endif
617
618ifneq ($(strip $(yacc_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800619$(yacc_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
620$(yacc_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
621$(yacc_objects): $(intermediates)/%.o: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
622 $(transform-$(PRIVATE_HOST)cpp-to-o)
623endif
624
625###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000626## LEX: Compile .l and .ll files to .cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800627###########################################################
628
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000629l_lex_sources := $(filter %.l,$(my_src_files))
630l_lex_cpps := $(addprefix \
631 $(intermediates)/,$(l_lex_sources:.l=$(LOCAL_CPP_EXTENSION)))
632
633ll_lex_sources := $(filter %.ll,$(my_src_files))
634ll_lex_cpps := $(addprefix \
635 $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION)))
636
637lex_cpps := $(l_lex_cpps) $(ll_lex_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800638lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o)
639
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000640ifneq ($(strip $(l_lex_cpps)),)
641$(l_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700642 $(TOPDIR)$(LOCAL_PATH)/%.l
The Android Open Source Project88b60792009-03-03 19:28:42 -0800643 $(transform-l-to-cpp)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000644endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800645
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000646ifneq ($(strip $(ll_lex_cpps)),)
647$(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
648 $(TOPDIR)$(LOCAL_PATH)/%.ll
649 $(transform-l-to-cpp)
650endif
651
652ifneq ($(strip $(lex_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800653$(lex_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
654$(lex_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
655$(lex_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700656 $(intermediates)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800657 $(my_additional_dependencies) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700658 $(yacc_headers)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800659 $(transform-$(PRIVATE_HOST)cpp-to-o)
660endif
661
662###########################################################
663## C++: Compile .cpp files to .o.
664###########################################################
665
Jeff Browne33ba4c2011-07-11 22:11:46 -0700666# we also do this on host modules, even though
The Android Open Source Project88b60792009-03-03 19:28:42 -0800667# it's not really arm, because there are files that are shared.
Ying Wangb8e01852014-01-23 15:09:04 -0800668cpp_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 -0800669cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o))
670
Ying Wangb8e01852014-01-23 15:09:04 -0800671cpp_normal_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_src_files))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800672cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o))
673
674$(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
675$(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
676$(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
677$(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
678
679cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects)
680
681ifneq ($(strip $(cpp_objects)),)
682$(cpp_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700683 $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800684 $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800685 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800686 $(transform-$(PRIVATE_HOST)cpp-to-o)
687-include $(cpp_objects:%.o=%.P)
688endif
689
690###########################################################
691## C++: Compile generated .cpp files to .o.
692###########################################################
693
Ying Wangec6d6262014-01-16 16:21:03 -0800694gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800695gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o)
696
697ifneq ($(strip $(gen_cpp_objects)),)
698# Compile all generated files as thumb.
699# TODO: support compiling certain generated files as arm.
700$(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
701$(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400702$(gen_cpp_objects): $(intermediates)/%.o: \
703 $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800704 $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800705 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800706 $(transform-$(PRIVATE_HOST)cpp-to-o)
707-include $(gen_cpp_objects:%.o=%.P)
708endif
709
710###########################################################
711## S: Compile generated .S and .s files to .o.
712###########################################################
713
Ying Wangec6d6262014-01-16 16:21:03 -0800714gen_S_sources := $(filter %.S,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800715gen_S_objects := $(gen_S_sources:%.S=%.o)
716
717ifneq ($(strip $(gen_S_sources)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400718$(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800719 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800720 $(transform-$(PRIVATE_HOST)s-to-o)
721-include $(gen_S_objects:%.o=%.P)
722endif
723
Ying Wangec6d6262014-01-16 16:21:03 -0800724gen_s_sources := $(filter %.s,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800725gen_s_objects := $(gen_s_sources:%.s=%.o)
726
727ifneq ($(strip $(gen_s_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400728$(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800729 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800730 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
731-include $(gen_s_objects:%.o=%.P)
732endif
733
734gen_asm_objects := $(gen_S_objects) $(gen_s_objects)
735
736###########################################################
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000737## o: Include generated .o files in output.
738###########################################################
739
Ying Wangec6d6262014-01-16 16:21:03 -0800740gen_o_objects := $(filter %.o,$(my_generated_sources))
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000741
742###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800743## C: Compile .c files to .o.
744###########################################################
745
Ying Wangb8e01852014-01-23 15:09:04 -0800746c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800747c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o))
748
Ying Wangb8e01852014-01-23 15:09:04 -0800749c_normal_sources := $(filter %.c,$(my_src_files))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800750c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o))
751
752$(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
753$(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
754$(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
755$(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
756
757c_objects := $(c_arm_objects) $(c_normal_objects)
758
759ifneq ($(strip $(c_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400760$(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800761 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800762 $(transform-$(PRIVATE_HOST)c-to-o)
763-include $(c_objects:%.o=%.P)
764endif
765
766###########################################################
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700767## C: Compile generated .c files to .o.
768###########################################################
769
Ying Wangec6d6262014-01-16 16:21:03 -0800770gen_c_sources := $(filter %.c,$(my_generated_sources))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700771gen_c_objects := $(gen_c_sources:%.c=%.o)
772
773ifneq ($(strip $(gen_c_objects)),)
774# Compile all generated files as thumb.
775# TODO: support compiling certain generated files as arm.
776$(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
777$(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400778$(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800779 $(my_additional_dependencies)
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700780 $(transform-$(PRIVATE_HOST)c-to-o)
781-include $(gen_c_objects:%.o=%.P)
782endif
783
784###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200785## ObjC: Compile .m files to .o
786###########################################################
787
Ying Wangb8e01852014-01-23 15:09:04 -0800788objc_sources := $(filter %.m,$(my_src_files))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200789objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o))
790
791ifneq ($(strip $(objc_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400792$(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800793 $(my_additional_dependencies)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200794 $(transform-$(PRIVATE_HOST)m-to-o)
795-include $(objc_objects:%.o=%.P)
796endif
797
798###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800799## AS: Compile .S files to .o.
800###########################################################
801
Ying Wangb8e01852014-01-23 15:09:04 -0800802asm_sources_S := $(filter %.S,$(my_src_files))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800803asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o))
804
805ifneq ($(strip $(asm_objects_S)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400806$(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800807 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800808 $(transform-$(PRIVATE_HOST)s-to-o)
809-include $(asm_objects_S:%.o=%.P)
810endif
811
Ying Wangb8e01852014-01-23 15:09:04 -0800812asm_sources_s := $(filter %.s,$(my_src_files))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800813asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o))
814
815ifneq ($(strip $(asm_objects_s)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400816$(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800817 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800818 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
819-include $(asm_objects_s:%.o=%.P)
820endif
821
822asm_objects := $(asm_objects_S) $(asm_objects_s)
823
824
Ying Wang7b913ce2014-06-05 19:05:47 -0700825# .asm for x86 needs to be compiled with yasm.
826ifeq (x86,$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
827asm_sources_asm := $(filter %.asm,$(my_src_files))
828ifneq ($(strip $(asm_sources_asm)),)
829asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o))
830$(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \
Dan Albert954b5bd2014-11-08 22:20:03 -0800831 $(my_additional_dependencies)
Ying Wang7b913ce2014-06-05 19:05:47 -0700832 $(transform-asm-to-o)
833
834asm_objects += $(asm_objects_asm)
835endif
836endif
837
Ying Wang5f074802011-11-08 09:31:21 -0800838####################################################
839## Import includes
840####################################################
841import_includes := $(intermediates)/import_includes
842import_includes_deps := $(strip \
843 $(foreach l, $(installed_shared_library_module_names), \
Ying Wang6ef65192014-01-15 16:02:16 -0800844 $(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 -0800845 $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \
Ying Wang6ef65192014-01-15 16:02:16 -0800846 $(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 -0800847$(import_includes) : $(import_includes_deps)
848 @echo Import includes file: $@
849 $(hide) mkdir -p $(dir $@) && rm -f $@
850ifdef import_includes_deps
851 $(hide) for f in $^; do \
852 cat $$f >> $@; \
853 done
854else
855 $(hide) touch $@
856endif
857
The Android Open Source Project88b60792009-03-03 19:28:42 -0800858###########################################################
859## Common object handling.
860###########################################################
861
862# some rules depend on asm_objects being first. If your code depends on
863# being first, it's reasonable to require it to be assembly
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100864normal_objects := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700865 $(asm_objects) \
866 $(cpp_objects) \
867 $(gen_cpp_objects) \
868 $(gen_asm_objects) \
869 $(c_objects) \
870 $(gen_c_objects) \
871 $(objc_objects) \
872 $(yacc_objects) \
873 $(lex_objects) \
874 $(proto_generated_objects) \
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100875 $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES))
876
877all_objects := $(normal_objects) $(gen_o_objects)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800878
Colin Cross2d206702014-02-13 13:41:52 -0800879my_c_includes += $(TOPDIR)$(LOCAL_PATH) $(intermediates) $(generated_sources_dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800880
Ying Wang848020f2012-08-14 10:13:16 -0700881ifndef LOCAL_SDK_VERSION
Ying Wang6ef65192014-01-15 16:02:16 -0800882 my_c_includes += $(JNI_H_INCLUDE)
Ying Wangbce4b752010-07-22 15:51:56 -0700883endif
884
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100885# all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES;
886# use normal_objects here to avoid creating circular dependencies. This assumes
887# that custom build rules which generate .o files don't consume other generated
888# sources as input (or if they do they take care of that dependency themselves).
Ying Wangec6d6262014-01-16 16:21:03 -0800889$(normal_objects) : | $(my_generated_sources)
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100890$(all_objects) : | $(import_includes)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800891ALL_C_CPP_ETC_OBJECTS += $(all_objects)
892
The Android Open Source Project88b60792009-03-03 19:28:42 -0800893
894###########################################################
895# Standard library handling.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800896###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800897
898###########################################################
899# The list of libraries that this module will link against are in
900# these variables. Each is a list of bare module names like "libc libm".
901#
902# LOCAL_SHARED_LIBRARIES
903# LOCAL_STATIC_LIBRARIES
904# LOCAL_WHOLE_STATIC_LIBRARIES
905#
906# We need to convert the bare names into the dependencies that
907# we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE.
908# LOCAL_BUILT_MODULE should depend on the BUILT versions of the
909# libraries, so that simply building this module doesn't force
910# an install of a library. Similarly, LOCAL_INSTALLED_MODULE
911# should depend on the INSTALLED versions of the libraries so
912# that they get installed when this module does.
913###########################################################
914# NOTE:
915# WHOLE_STATIC_LIBRARIES are libraries that are pulled into the
916# module without leaving anything out, which is useful for turning
917# a collection of .a files into a .so file. Linking against a
918# normal STATIC_LIBRARY will only pull in code/symbols that are
919# referenced by the module. (see gcc/ld's --whole-archive option)
920###########################################################
921
922# Get the list of BUILT libraries, which are under
923# various intermediates directories.
924so_suffix := $($(my_prefix)SHLIB_SUFFIX)
925a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX)
926
Ying Wang848020f2012-08-14 10:13:16 -0700927ifdef LOCAL_SDK_VERSION
The Android Open Source Project88b60792009-03-03 19:28:42 -0800928built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -0800929 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800930 $(addsuffix $(so_suffix), \
Ying Wang6ef65192014-01-15 16:02:16 -0800931 $(my_shared_libraries)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800932
Ying Wangd8d37212014-03-21 16:17:04 -0700933# Add the NDK libraries to the built module dependency
Ying Wangcce4c972011-03-03 18:53:53 -0800934my_system_shared_libraries_fullpath := \
935 $(my_ndk_stl_shared_lib_fullpath) \
Andrew Hsieh140761af02014-04-25 23:47:10 -0700936 $(addprefix $(my_ndk_sysroot_lib)/, \
Ying Wangd8d37212014-03-21 16:17:04 -0700937 $(addsuffix $(so_suffix), $(my_system_shared_libraries)))
Ying Wang1a081002010-07-13 14:55:47 -0700938
939built_shared_libraries += $(my_system_shared_libraries_fullpath)
Ying Wang1a081002010-07-13 14:55:47 -0700940else
Ying Wang1a081002010-07-13 14:55:47 -0700941built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -0800942 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
Ying Wang1a081002010-07-13 14:55:47 -0700943 $(addsuffix $(so_suffix), \
Ying Wangd8d37212014-03-21 16:17:04 -0700944 $(installed_shared_library_module_names)))
Ying Wang1a081002010-07-13 14:55:47 -0700945endif
946
The Android Open Source Project88b60792009-03-03 19:28:42 -0800947built_static_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -0800948 $(foreach lib,$(my_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800949 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -0800950 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 -0800951
Ying Wang848020f2012-08-14 10:13:16 -0700952ifdef LOCAL_SDK_VERSION
Ying Wangcce4c972011-03-03 18:53:53 -0800953built_static_libraries += $(my_ndk_stl_static_lib)
954endif
955
The Android Open Source Project88b60792009-03-03 19:28:42 -0800956built_whole_libraries := \
Colin Cross90353fe2014-02-04 14:53:25 -0800957 $(foreach lib,$(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800958 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -0800959 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 -0800960
The Android Open Source Project88b60792009-03-03 19:28:42 -0800961# We don't care about installed static libraries, since the
962# libraries have already been linked into the module at that point.
963# We do, however, care about the NOTICE files for any static
Steve Blockd14d3b42012-03-01 11:34:41 +0000964# libraries that we use. (see notice_files.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800965
966installed_static_library_notice_file_targets := \
Colin Cross90353fe2014-02-04 14:53:25 -0800967 $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800968 NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib))
969
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700970# Default is -fno-rtti.
Doug Kwane3c3c6d2011-06-07 10:55:48 -0700971ifeq ($(strip $(LOCAL_RTTI_FLAG)),)
972LOCAL_RTTI_FLAG := -fno-rtti
973endif
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700974
The Android Open Source Project88b60792009-03-03 19:28:42 -0800975###########################################################
976# Rule-specific variable definitions
977###########################################################
Logan Chiene6f65432013-12-10 19:07:41 +0800978
Ying Wang824344a2014-05-27 13:03:36 -0700979ifeq ($(my_clang),true)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -0700980my_cflags += $(LOCAL_CLANG_CFLAGS)
981my_cpplags += $(LOCAL_CLANG_CPPFLAGS)
982my_asflags += $(LOCAL_CLANG_ASFLAGS)
983my_ldflags += $(LOCAL_CLANG_LDFLAGS)
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -0700984my_cflags += $(LOCAL_CLANG_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CFLAGS_$(my_32_64_bit_suffix))
985my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix))
986my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix))
987my_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 -0800988my_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cflags))
989my_cppflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cppflags))
990my_asflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_asflags))
991my_ldflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_ldflags))
Logan Chiene6f65432013-12-10 19:07:41 +0800992endif
993
The Android Open Source Project88b60792009-03-03 19:28:42 -0800994$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800995$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags)
Ying Wang7429e212012-08-15 10:59:10 -0700996$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(LOCAL_CONLYFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800997$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags)
998$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags)
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700999$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001000$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001001$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes)
Ying Wang5f074802011-11-08 09:31:21 -08001002$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes)
Ying Wang6ef65192014-01-15 16:02:16 -08001003$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags)
Dan Albertb05f2ca2014-09-12 14:46:57 -07001004$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs)
Ying Wangb8e01852014-01-23 15:09:04 -08001005$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_CRT := $(strip $(LOCAL_NO_CRT) $(LOCAL_NO_CRT_$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Ying Wangd90de322014-05-23 16:42:37 -07001006$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LIBCXX := $(my_libcxx)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001007
1008# this is really the way to get the files onto the command line instead
1009# of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work
1010$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries)
1011$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries)
1012$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries)
1013$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects)
1014
1015###########################################################
1016# Define library dependencies.
1017###########################################################
1018# all_libraries is used for the dependencies on LOCAL_BUILT_MODULE.
1019all_libraries := \
1020 $(built_shared_libraries) \
1021 $(built_static_libraries) \
1022 $(built_whole_libraries)
1023
The Android Open Source Project88b60792009-03-03 19:28:42 -08001024# Also depend on the notice files for any static libraries that
1025# are linked into this module. This will force them to be installed
1026# when this module is.
1027$(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets)
Ying Wang5f074802011-11-08 09:31:21 -08001028
1029###########################################################
1030# Export includes
1031###########################################################
1032export_includes := $(intermediates)/export_includes
1033$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(LOCAL_EXPORT_C_INCLUDE_DIRS)
Ying Wang49085952014-05-06 13:03:32 -07001034# Make sure .pb.h are already generated before any dependent source files get compiled.
1035$(export_includes) : $(LOCAL_MODULE_MAKEFILE) $(proto_generated_headers)
Ying Wang5f074802011-11-08 09:31:21 -08001036 @echo Export includes file: $< -- $@
1037 $(hide) mkdir -p $(dir $@) && rm -f $@
1038ifdef LOCAL_EXPORT_C_INCLUDE_DIRS
1039 $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
1040 echo "-I $$d" >> $@; \
1041 done
1042else
1043 $(hide) touch $@
1044endif
Ying Wang616e5962012-04-18 17:35:55 -07001045
1046# Make sure export_includes gets generated when you are running mm/mmm
1047$(LOCAL_BUILT_MODULE) : | $(export_includes)