blob: b8003d711955034e1af2d921feedc905f1500564 [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)
Stephen Hines15680292014-11-26 00:53:46 -080041my_conlyflags := $(LOCAL_CONLYFLAGS)
Dan Albertd3d894d2014-11-14 15:28:49 -080042my_cppflags := $(LOCAL_CPPFLAGS)
43my_ldflags := $(LOCAL_LDFLAGS)
44my_ldlibs := $(LOCAL_LDLIBS)
45my_asflags := $(LOCAL_ASFLAGS)
46my_cc := $(LOCAL_CC)
Ying Wangc671a7c2015-07-20 18:40:18 -070047my_cc_wrapper := $(CC_WRAPPER)
Dan Albertd3d894d2014-11-14 15:28:49 -080048my_cxx := $(LOCAL_CXX)
Ying Wangc671a7c2015-07-20 18:40:18 -070049my_cxx_wrapper := $(CXX_WRAPPER)
Dan Albertd3d894d2014-11-14 15:28:49 -080050my_c_includes := $(LOCAL_C_INCLUDES)
51my_generated_sources := $(LOCAL_GENERATED_SOURCES)
52my_native_coverage := $(LOCAL_NATIVE_COVERAGE)
53my_additional_dependencies := $(LOCAL_MODULE_MAKEFILE) $(LOCAL_ADDITIONAL_DEPENDENCIES)
Ying Wangfaeb6932015-04-07 11:59:34 -070054my_export_c_include_dirs := $(LOCAL_EXPORT_C_INCLUDE_DIRS)
Dan Albertd3d894d2014-11-14 15:28:49 -080055
Dan Albertb58fb4a2014-11-14 17:15:00 -080056ifdef LOCAL_IS_HOST_MODULE
57my_allow_undefined_symbols := true
58else
59my_allow_undefined_symbols := $(strip $(LOCAL_ALLOW_UNDEFINED_SYMBOLS))
60endif
61
Andrew Hsieh140761af02014-04-25 23:47:10 -070062my_ndk_sysroot :=
63my_ndk_sysroot_include :=
64my_ndk_sysroot_lib :=
Ying Wang848020f2012-08-14 10:13:16 -070065ifdef LOCAL_SDK_VERSION
Ying Wangfe1bfe72012-08-14 11:08:03 -070066 ifdef LOCAL_NDK_VERSION
67 $(error $(LOCAL_PATH): LOCAL_NDK_VERSION is now retired.)
68 endif
Ying Wang1a081002010-07-13 14:55:47 -070069 ifdef LOCAL_IS_HOST_MODULE
Ian Rogers76a6dc32012-10-01 16:36:23 -070070 $(error $(LOCAL_PATH): LOCAL_SDK_VERSION cannot be used in host module)
Ying Wang1a081002010-07-13 14:55:47 -070071 endif
Ying Wang848020f2012-08-14 10:13:16 -070072 my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/sources
Andrew Hsieh140761af02014-04-25 23:47:10 -070073 my_ndk_sysroot := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
74 my_ndk_sysroot_include := $(my_ndk_sysroot)/usr/include
75 ifeq (x86_64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
76 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib64
Duane Sand1a074872014-11-08 15:25:18 -080077 else ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
78 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/libr6
Andrew Hsieh140761af02014-04-25 23:47:10 -070079 else
80 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib
81 endif
Ying Wangcce4c972011-03-03 18:53:53 -080082
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -070083 # The bionic linker now has support for packed relocations and gnu style
84 # hashes (which are much faster!), but shipping to older devices requires
85 # the old style hash and disabling packed relocations.
Dan Albertd3d894d2014-11-14 15:28:49 -080086 #ifeq ($(shell expr $(LOCAL_SDK_VERSION) >= FIRST_SUPPORTED_VERSION),0)
87 my_ldflags += -Wl,--hash-style=sysv
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -070088 LOCAL_PACK_MODULE_RELOCATIONS := false
Dan Albertd3d894d2014-11-14 15:28:49 -080089 #endif
90
Ying Wangcce4c972011-03-03 18:53:53 -080091 # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location.
92 # See ndk/docs/CPLUSPLUS-SUPPORT.html
93 my_ndk_stl_include_path :=
94 my_ndk_stl_shared_lib_fullpath :=
95 my_ndk_stl_shared_lib :=
96 my_ndk_stl_static_lib :=
Andrew Hsieh73d800e2014-03-04 17:11:52 +080097 my_ndk_stl_cppflags :=
Duane Sand1a074872014-11-08 15:25:18 -080098 my_cpu_variant := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)
99 ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
100 my_cpu_variant := mips32r6
101 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800102 LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800103 ifeq (,$(LOCAL_NDK_STL_VARIANT))
104 LOCAL_NDK_STL_VARIANT := system
105 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800106 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 -0700107 $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800108 endif
109 ifeq (system,$(LOCAL_NDK_STL_VARIANT))
110 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
111 # for "system" variant, the shared library exists in the system library and -lstdc++ is added by default.
112 else # LOCAL_NDK_STL_VARIANT is not system
113 ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
114 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
115 ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800116 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(my_cpu_variant)/libstlport_static.a
Ying Wangcce4c972011-03-03 18:53:53 -0800117 else
Duane Sand1a074872014-11-08 15:25:18 -0800118 my_ndk_stl_shared_lib_fullpath := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(my_cpu_variant)/libstlport_shared.so
Ying Wangcce4c972011-03-03 18:53:53 -0800119 my_ndk_stl_shared_lib := -lstlport_shared
120 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800121 else # LOCAL_NDK_STL_VARIANT is not stlport_* either
122 ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
123 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include \
124 $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include \
125 $(my_ndk_source_root)/android/support/include
126 ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800127 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(my_cpu_variant)/libc++_static.a
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800128 else
Duane Sand1a074872014-11-08 15:25:18 -0800129 my_ndk_stl_shared_lib_fullpath := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(my_cpu_variant)/libc++_shared.so
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800130 my_ndk_stl_shared_lib := -lc++_shared
131 endif
132 my_ndk_stl_cppflags := -std=c++11
Ying Wangcce4c972011-03-03 18:53:53 -0800133 else
134 # LOCAL_NDK_STL_VARIANT is gnustl_static
Duane Sand1a074872014-11-08 15:25:18 -0800135 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/libs/$(my_cpu_variant)/include \
Ben Cheng4de6fa42014-04-10 22:46:26 -0700136 $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/include
Duane Sand1a074872014-11-08 15:25:18 -0800137 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/libs/$(my_cpu_variant)/libgnustl_static.a
Ying Wangcce4c972011-03-03 18:53:53 -0800138 endif
139 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800140 endif
Ying Wang1a081002010-07-13 14:55:47 -0700141endif
142
Dan Albert95994de2014-08-07 18:29:11 -0700143# MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
144# all code is position independent, and then those warnings get promoted to
145# errors.
Ying Wang594a10a2014-08-07 20:08:04 -0700146ifndef USE_MINGW
Dan Albert4803ce22014-08-06 12:36:46 -0700147ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES)
148my_cflags += -fpie
149else
150my_cflags += -fPIC
151endif
Dan Albert95994de2014-08-07 18:29:11 -0700152endif
Dan Albert4803ce22014-08-06 12:36:46 -0700153
Ying Wang6feb6d52014-04-17 10:03:35 -0700154my_src_files += $(LOCAL_SRC_FILES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SRC_FILES_$(my_32_64_bit_suffix))
155my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix))
156my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix))
157my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix))
158my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix))
159my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix))
160my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix))
161my_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 -0800162
Dan Albertdb905e72014-08-18 11:14:38 -0700163my_clang := $(strip $(LOCAL_CLANG))
Ying Wang824344a2014-05-27 13:03:36 -0700164ifdef LOCAL_CLANG_$(my_32_64_bit_suffix)
Dan Albertdb905e72014-08-18 11:14:38 -0700165my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix)))
Ying Wang824344a2014-05-27 13:03:36 -0700166endif
167ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Dan Albertdb905e72014-08-18 11:14:38 -0700168my_clang := $(strip $(LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Ying Wang824344a2014-05-27 13:03:36 -0700169endif
170
Tim Murray92d79cb2014-04-04 14:38:29 -0700171# clang is enabled by default for host builds
172# enable it unless we've specifically disabled clang above
173ifdef LOCAL_IS_HOST_MODULE
Tim Murrayf3ca3d52014-07-24 15:20:18 -0700174 ifneq ($(HOST_OS),windows)
Tim Murray5ca1dc12014-07-24 14:42:53 -0700175 ifeq ($(my_clang),)
176 my_clang := true
177 endif
178 endif
Tim Murray92d79cb2014-04-04 14:38:29 -0700179endif
180
Tim Murray06659bc2014-08-13 11:53:07 -0700181# Add option to make clang the default for device build
182ifeq ($(USE_CLANG_PLATFORM_BUILD),true)
183 ifeq ($(my_clang),)
184 my_clang := true
185 endif
186endif
187
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800188# arch-specific static libraries go first so that generic ones can depend on them
Ying Wang6feb6d52014-04-17 10:03:35 -0700189my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries)
190my_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 -0800191
Ying Wang6feb6d52014-04-17 10:03:35 -0700192my_cflags := $(filter-out $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_UNSUPPORTED_CFLAGS),$(my_cflags))
Ying Wang6ef65192014-01-15 16:02:16 -0800193
Ying Wang75e8fcb2014-10-07 13:03:29 -0700194include $(BUILD_SYSTEM)/cxx_stl_setup.mk
Ying Wangd90de322014-05-23 16:42:37 -0700195
Ying Wang285045b2013-08-13 12:35:10 -0700196# Add static HAL libraries
197ifdef LOCAL_HAL_STATIC_LIBRARIES
198$(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \
199 $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\
Ying Wang6ef65192014-01-15 16:02:16 -0800200 $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\
201 $(eval my_static_libraries += $(lib).default)))
Ying Wang285045b2013-08-13 12:35:10 -0700202b_lib :=
203endif
204
Dan Albert4ae5d4b2014-10-31 16:23:08 -0700205include $(BUILD_SYSTEM)/config_sanitizers.mk
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400206
Ying Wangba8b3772014-03-10 18:23:08 -0700207ifeq ($(strip $($(LOCAL_2ND_ARCH_VAR_PREFIX)WITHOUT_$(my_prefix)CLANG)),true)
Ying Wang824344a2014-05-27 13:03:36 -0700208 my_clang :=
Mike Lockwood051a1742013-06-14 10:52:50 -0700209endif
210
Shih-wei Liaoc8dfc162013-01-27 01:45:59 -0800211# Add in libcompiler_rt for all regular device builds
Dan Albert30a9c352015-04-09 14:41:06 -0700212ifeq (,$(LOCAL_SDK_VERSION)$(WITHOUT_LIBCOMPILER_RT))
Ying Wang6ef65192014-01-15 16:02:16 -0800213 my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES)
Stephen Hinesc72f3962012-06-11 14:53:34 -0700214endif
215
Jing Yu2dcc8062009-09-21 16:31:50 -0700216####################################################
217## Add FDO flags if FDO is turned on and supported
Dehao Chen295a6d22014-09-19 10:18:12 -0700218## Please note that we will do option filtering during FDO build.
219## i.e. Os->O2, remove -fno-early-inline and -finline-limit.
220##################################################################
Ying Wang45d01432014-10-28 14:50:59 -0700221my_fdo_build :=
222ifneq ($(filter true always, $(LOCAL_FDO_SUPPORT)),)
223 ifeq ($(BUILD_FDO_INSTRUMENT),true)
224 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_CFLAGS)
225 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_LDFLAGS)
226 my_fdo_build := true
227 else ifneq ($(filter true,$(BUILD_FDO_OPTIMIZE))$(filter always,$(LOCAL_FDO_SUPPORT)),)
228 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_OPTIMIZE_CFLAGS)
229 my_fdo_build := true
synergydev4a605762013-08-05 02:44:37 -0700230 endif
Ying Wangc671a7c2015-07-20 18:40:18 -0700231 # Disable ccache (or other compiler wrapper).
232 my_cc_wrapper :=
233 my_cxx_wrapper :=
Jing Yu2dcc8062009-09-21 16:31:50 -0700234endif
235
The Android Open Source Project88b60792009-03-03 19:28:42 -0800236###########################################################
Jim Huang20d1ba62010-10-14 16:15:56 +0800237## Explicitly declare assembly-only __ASSEMBLY__ macro for
238## assembly source
239###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800240my_asflags += -D__ASSEMBLY__
Jim Huang20d1ba62010-10-14 16:15:56 +0800241
Ying Wangd8d37212014-03-21 16:17:04 -0700242
Jim Huang20d1ba62010-10-14 16:15:56 +0800243###########################################################
Ying Wang1a081002010-07-13 14:55:47 -0700244## Define PRIVATE_ variables from global vars
245###########################################################
Ying Wang7fff9a12014-01-09 14:39:41 -0800246ifndef LOCAL_IS_HOST_MODULE
Ying Wang848020f2012-08-14 10:13:16 -0700247ifdef LOCAL_SDK_VERSION
Ying Wang1a081002010-07-13 14:55:47 -0700248my_target_project_includes :=
Andrew Hsieh140761af02014-04-25 23:47:10 -0700249my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_sysroot_include)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800250my_target_global_cppflags := $(my_ndk_stl_cppflags)
Ying Wang1a081002010-07-13 14:55:47 -0700251else
Ying Wang6ef65192014-01-15 16:02:16 -0800252my_target_project_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES)
253my_target_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_C_INCLUDES)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800254my_target_global_cppflags :=
Ying Wangf4723fa2013-08-15 11:01:10 -0700255endif # LOCAL_SDK_VERSION
256
Ying Wang824344a2014-05-27 13:03:36 -0700257ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800258my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800259my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800260my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CPPFLAGS)
Ying Wang1f982832014-02-06 18:08:44 -0800261my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_LDFLAGS)
Ying Wangda4bf422012-08-16 16:45:01 -0700262else
Ying Wang6ef65192014-01-15 16:02:16 -0800263my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800264my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800265my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800266my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700267endif # my_clang
Ying Wangda4bf422012-08-16 16:45:01 -0700268
Ying Wang1a081002010-07-13 14:55:47 -0700269$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes)
Evgeniy Stepanova7095e92012-03-30 12:18:52 +0400270$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes)
Ying Wang1a081002010-07-13 14:55:47 -0700271$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800272$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CONLYFLAGS := $(my_target_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800273$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags)
274$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags)
275
Ying Wang7fff9a12014-01-09 14:39:41 -0800276else # LOCAL_IS_HOST_MODULE
277
Ying Wang824344a2014-05-27 13:03:36 -0700278ifeq ($(my_clang),true)
Ying Wang6feb6d52014-04-17 10:03:35 -0700279my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800280my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CONLYFLAGS)
Ying Wang6feb6d52014-04-17 10:03:35 -0700281my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CPPFLAGS)
282my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_LDFLAGS)
Stephen Hinesf0089662014-09-25 22:35:16 -0700283my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Logan Chiene6f65432013-12-10 19:07:41 +0800284else
Ying Wang6feb6d52014-04-17 10:03:35 -0700285my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800286my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CONLYFLAGS)
Ying Wang6feb6d52014-04-17 10:03:35 -0700287my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS)
288my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LDFLAGS)
289my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Ying Wang824344a2014-05-27 13:03:36 -0700290endif # my_clang
Logan Chiene6f65432013-12-10 19:07:41 +0800291
292$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_C_INCLUDES := $(my_host_c_includes)
293$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800294$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CONLYFLAGS := $(my_host_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800295$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags)
296$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags)
297endif # LOCAL_IS_HOST_MODULE
Ying Wang1a081002010-07-13 14:55:47 -0700298
Dan Albert43e128a2015-01-23 16:12:57 -0800299# To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and
300# build with NATIVE_COVERAGE=true in your enviornment. Note that the build
301# system is not sensitive to changes to NATIVE_COVERAGE, so you should do a
302# clean build of your module after toggling it.
303ifeq ($(NATIVE_COVERAGE),true)
304 ifeq ($(my_native_coverage),true)
Dan Albert343ed672015-01-25 16:20:57 -0800305 # Note that clang coverage doesn't play nicely with acov out of the box.
306 # Clang apparently generates .gcno files that aren't compatible with
307 # gcov-4.8. This can be solved by installing gcc-4.6 and invoking lcov
308 # with `--gcov-tool /usr/bin/gcov-4.6`.
309 #
310 # http://stackoverflow.com/questions/17758126/clang-code-coverage-invalid-output
Dan Albert2c03e042015-01-24 15:14:35 -0800311 my_cflags += --coverage -O0
Dan Albert343ed672015-01-25 16:20:57 -0800312 my_ldflags += --coverage
Dan Albert43e128a2015-01-23 16:12:57 -0800313 endif
314else
315 my_native_coverage := false
316endif
317
Ying Wang1a081002010-07-13 14:55:47 -0700318###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800319## Define PRIVATE_ variables used by multiple module types
320###########################################################
321$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700322 $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800323
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800324ifeq ($(strip $(WITH_SYNTAX_CHECK)),)
325 LOCAL_NO_SYNTAX_CHECK := true
326endif
327
Andrew Hsieh906cb782013-09-10 17:37:14 +0800328ifeq ($(strip $(WITH_STATIC_ANALYZER)),)
329 LOCAL_NO_STATIC_ANALYZER := true
330endif
331
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800332ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
333 my_syntax_arch := host
334else
Ying Wang6ef65192014-01-15 16:02:16 -0800335 my_syntax_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800336endif
337
Ying Wang6ef65192014-01-15 16:02:16 -0800338ifeq ($(strip $(my_cc)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700339 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800340 my_cc := $(CLANG)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400341 else
Ying Wang6ef65192014-01-15 16:02:16 -0800342 my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400343 endif
Ying Wangc671a7c2015-07-20 18:40:18 -0700344 my_cc := $(my_cc_wrapper) $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800345endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800346ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800347 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800348else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800349ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800350 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-syntax $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800351endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800352endif
Ying Wang6ef65192014-01-15 16:02:16 -0800353$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800354
Ying Wang6ef65192014-01-15 16:02:16 -0800355ifeq ($(strip $(my_cxx)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700356 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800357 my_cxx := $(CLANG_CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400358 else
Ying Wang6ef65192014-01-15 16:02:16 -0800359 my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400360 endif
Ying Wangc671a7c2015-07-20 18:40:18 -0700361 my_cxx := $(my_cxx_wrapper) $(my_cxx)
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_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-analyzer $(my_syntax_arch) "$(my_cxx)"
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_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-syntax $(my_syntax_arch) "$(my_cxx)"
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_CXX := $(my_cxx)
Dan Albertb6bb71b2014-08-05 14:44:41 -0700371$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800372
373# TODO: support a mix of standard extensions so that this isn't necessary
374LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION))
375ifeq ($(LOCAL_CPP_EXTENSION),)
376 LOCAL_CPP_EXTENSION := .cpp
377endif
378$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPP_EXTENSION := $(LOCAL_CPP_EXTENSION)
379
380# Certain modules like libdl have to have symbols resolved at runtime and blow
381# up if --no-undefined is passed to the linker.
382ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),)
Dan Albertb58fb4a2014-11-14 17:15:00 -0800383ifeq ($(my_allow_undefined_symbols),)
Ying Wang6ef65192014-01-15 16:02:16 -0800384 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)NO_UNDEFINED_LDFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800385endif
386endif
387
Ying Wangfcdabd42011-04-25 14:22:41 -0700388ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES))
389$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true
390else
391$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES :=
392endif
393
The Android Open Source Project88b60792009-03-03 19:28:42 -0800394###########################################################
395## Define arm-vs-thumb-mode flags.
396###########################################################
397LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE))
Ying Wangfaeb6932015-04-07 11:59:34 -0700398ifeq ($($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800399arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm)
400normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb)
401
Dave Bort95282482009-04-23 18:44:55 -0700402# Read the values from something like TARGET_arm_CFLAGS or
403# TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't
404# actually used (although they are usually empty).
Ying Wang6ef65192014-01-15 16:02:16 -0800405arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS)
406normal_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(normal_objects_mode)_CFLAGS)
Dan Albertdb905e72014-08-18 11:14:38 -0700407ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800408arm_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(arm_objects_cflags))
409normal_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(normal_objects_cflags))
Evgeniy Stepanovf50f4c52012-04-05 11:44:37 +0400410endif
411
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800412else
413arm_objects_mode :=
414normal_objects_mode :=
415arm_objects_cflags :=
416normal_objects_cflags :=
417endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800418
419###########################################################
420## Define per-module debugging flags. Users can turn on
421## debugging for a particular module by setting DEBUG_MODULE_ModuleName
422## to a non-empty value in their environment or buildspec.mk,
423## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the
424## debug flags that they want to use.
425###########################################################
426ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE))
427 debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS)
428else
429 debug_cflags :=
430endif
431
Tim Murraya7aa8002012-10-29 16:06:00 -0700432####################################################
433## Compile RenderScript with reflected C++
434####################################################
435
Ying Wangb8e01852014-01-23 15:09:04 -0800436renderscript_sources := $(filter %.rs %.fs,$(my_src_files))
Tim Murraya7aa8002012-10-29 16:06:00 -0700437
438ifneq (,$(renderscript_sources))
439
440renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
441RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp
442renderscript_intermediate := $(intermediates)/renderscript
443
444ifeq ($(LOCAL_RENDERSCRIPT_CC),)
445LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
446endif
447
448# Turn on all warnings and warnings as errors for RS compiles.
449# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
450renderscript_flags := -Wall -Werror
451renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
Ying Wangacaada12014-09-10 16:11:41 -0700452# -m32 or -m64
453renderscript_flags += -m$(my_32_64_bit_suffix)
Tim Murrayf0020c62014-09-10 15:11:01 -0700454
Ying Wang6ef65192014-01-15 16:02:16 -0800455renderscript_includes := \
Tim Murraya7aa8002012-10-29 16:06:00 -0700456 $(TOPDIR)external/clang/lib/Headers \
457 $(TOPDIR)frameworks/rs/scriptc \
458 $(LOCAL_RENDERSCRIPT_INCLUDES)
459
460ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
Ying Wang6ef65192014-01-15 16:02:16 -0800461renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
Tim Murraya7aa8002012-10-29 16:06:00 -0700462endif
463
Ying Wangb9319562015-04-03 16:15:28 -0700464bc_dep_files := $(addprefix $(renderscript_intermediate)/, \
465 $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
466
Ying Wang6ef65192014-01-15 16:02:16 -0800467$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes)
Tim Murraya7aa8002012-10-29 16:06:00 -0700468$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
469$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
470$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
471$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate)
Ying Wangb9319562015-04-03 16:15:28 -0700472$(RenderScript_file_stamp): PRIVATE_DEP_FILES := $(bc_dep_files)
Tim Murraya7aa8002012-10-29 16:06:00 -0700473$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
474 $(transform-renderscripts-to-cpp-and-bc)
475
Ying Wangb9319562015-04-03 16:15:28 -0700476# include the dependency files (.d/.P) generated by llvm-rs-cc.
477-include $(bc_dep_files:%.d=%.P)
Tim Murraya7aa8002012-10-29 16:06:00 -0700478
479LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
480
481rs_generated_cpps := $(addprefix \
482 $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \
483 $(notdir $(renderscript_sources)))))
484
Stephen Hines8ff92522014-06-06 12:51:47 -0700485# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Tim Murraya7aa8002012-10-29 16:06:00 -0700486$(rs_generated_cpps) : $(RenderScript_file_stamp)
Ying Wang81ab8332014-05-28 16:17:09 -0700487 @echo "Updated RS generated cpp file $@."
Ying Wange25b3982015-02-26 18:47:21 -0800488 $(hide) touch $@
Tim Murraya7aa8002012-10-29 16:06:00 -0700489
Ying Wang6ef65192014-01-15 16:02:16 -0800490my_c_includes += $(renderscript_intermediate)
491my_generated_sources += $(rs_generated_cpps)
Tim Murraya7aa8002012-10-29 16:06:00 -0700492
493endif
494
495
The Android Open Source Project88b60792009-03-03 19:28:42 -0800496###########################################################
497## Stuff source generated from one-off tools
498###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800499$(my_generated_sources): PRIVATE_MODULE := $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800500
Colin Crossd8262642014-01-24 23:17:21 -0800501my_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 -0800502
Colin Crossd8262642014-01-24 23:17:21 -0800503$(my_gen_sources_copy): $(intermediates)/% : $(generated_sources_dir)/% | $(ACP)
504 @echo "Copy: $@"
505 $(copy-file-to-target)
506
507my_generated_sources := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(my_generated_sources))
508
509ALL_GENERATED_SOURCES += $(my_generated_sources)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800510
511###########################################################
Ying Wangfaeb6932015-04-07 11:59:34 -0700512## Compile the .proto files to .cc (or .c) and then to .o
Ying Wanga5fc87a2010-11-02 18:43:16 -0700513###########################################################
Ying Wangb8e01852014-01-23 15:09:04 -0800514proto_sources := $(filter %.proto,$(my_src_files))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700515proto_generated_objects :=
516proto_generated_headers :=
517ifneq ($(proto_sources),)
Ying Wangfaeb6932015-04-07 11:59:34 -0700518proto_generated_sources_dir := $(generated_sources_dir)/proto
Ying Wangead89442014-02-25 11:18:40 -0800519proto_generated_obj_dir := $(intermediates)/proto
Ying Wangfaeb6932015-04-07 11:59:34 -0700520
521ifneq (,$(filter nanopb-c nanopb-c-enable_malloc, $(LOCAL_PROTOC_OPTIMIZE_TYPE)))
522my_proto_source_suffix := .c
523my_proto_c_includes := external/nanopb-c
524my_protoc_flags := --nanopb_out=$(proto_generated_sources_dir) \
525 --plugin=external/nanopb-c/generator/protoc-gen-nanopb
526else
527my_proto_source_suffix := .cc
528my_proto_c_includes := external/protobuf/src
529my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI
530my_protoc_flags := --cpp_out=$(proto_generated_sources_dir)
531endif
532my_proto_c_includes += $(proto_generated_sources_dir)
533
534proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
535proto_generated_sources := $(addprefix $(proto_generated_sources_dir)/, \
536 $(patsubst %.proto,%.pb$(my_proto_source_suffix),$(proto_sources_fullpath)))
537proto_generated_headers := $(patsubst %.pb$(my_proto_source_suffix),%.pb.h, $(proto_generated_sources))
Ying Wangead89442014-02-25 11:18:40 -0800538proto_generated_objects := $(addprefix $(proto_generated_obj_dir)/, \
539 $(patsubst %.proto,%.pb.o,$(proto_sources_fullpath)))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700540
Ying Wangead89442014-02-25 11:18:40 -0800541# Ensure the transform-proto-to-cc rule is only defined once in multilib build.
542ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined
Ying Wangfaeb6932015-04-07 11:59:34 -0700543$(proto_generated_sources): PRIVATE_PROTO_INCLUDES := $(TOP)
544$(proto_generated_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS) $(my_protoc_flags)
545$(proto_generated_sources): $(proto_generated_sources_dir)/%.pb$(my_proto_source_suffix): %.proto $(PROTOC)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700546 $(transform-proto-to-cc)
547
Stephen Hines8ff92522014-06-06 12:51:47 -0700548# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Ying Wangfaeb6932015-04-07 11:59:34 -0700549$(proto_generated_headers): $(proto_generated_sources_dir)/%.pb.h: $(proto_generated_sources_dir)/%.pb$(my_proto_source_suffix)
Ying Wang81ab8332014-05-28 16:17:09 -0700550 @echo "Updated header file $@."
Ying Wange25b3982015-02-26 18:47:21 -0800551 $(hide) touch $@
Ying Wanga5fc87a2010-11-02 18:43:16 -0700552
Ying Wangead89442014-02-25 11:18:40 -0800553$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true
554endif # transform-proto-to-cc rule included only once
555
Ying Wang022a7b32012-06-13 11:38:10 -0700556$(proto_generated_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
557$(proto_generated_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wangfaeb6932015-04-07 11:59:34 -0700558$(proto_generated_objects): $(proto_generated_obj_dir)/%.o: $(proto_generated_sources_dir)/%$(my_proto_source_suffix) $(proto_generated_headers)
559ifeq ($(my_proto_source_suffix),.c)
560 $(transform-$(PRIVATE_HOST)c-to-o)
561else
Ying Wanga5fc87a2010-11-02 18:43:16 -0700562 $(transform-$(PRIVATE_HOST)cpp-to-o)
Ying Wangfaeb6932015-04-07 11:59:34 -0700563endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700564-include $(proto_generated_objects:%.o=%.P)
565
Ying Wangfaeb6932015-04-07 11:59:34 -0700566my_c_includes += $(my_proto_c_includes)
567# Auto-export the generated proto source dir.
568my_export_c_include_dirs += $(my_proto_c_includes)
569
570ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c-enable_malloc)
Ying Wang8a0d53e2015-04-08 09:54:34 -0700571 my_static_libraries += libprotobuf-c-nano-enable_malloc
Ying Wangfaeb6932015-04-07 11:59:34 -0700572else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c)
Ying Wang8a0d53e2015-04-08 09:54:34 -0700573 my_static_libraries += libprotobuf-c-nano
Ying Wangfaeb6932015-04-07 11:59:34 -0700574else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full)
Dan Albertc3031c72014-11-11 10:42:17 -0800575 ifdef LOCAL_SDK_VERSION
576 my_static_libraries += libprotobuf-cpp-full
577 else
578 my_shared_libraries += libprotobuf-cpp-full
579 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700580else
Dan Albertc3031c72014-11-11 10:42:17 -0800581 ifdef LOCAL_SDK_VERSION
582 my_static_libraries += libprotobuf-cpp-lite
583 else
584 my_shared_libraries += libprotobuf-cpp-lite
585 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700586endif
Ying Wangead89442014-02-25 11:18:40 -0800587endif # $(proto_sources) non-empty
Ying Wanga5fc87a2010-11-02 18:43:16 -0700588
Ying Wanga5fc87a2010-11-02 18:43:16 -0700589###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000590## YACC: Compile .y and .yy files to .cpp and the to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800591###########################################################
592
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000593y_yacc_sources := $(filter %.y,$(my_src_files))
594y_yacc_cpps := $(addprefix \
595 $(intermediates)/,$(y_yacc_sources:.y=$(LOCAL_CPP_EXTENSION)))
596
597yy_yacc_sources := $(filter %.yy,$(my_src_files))
598yy_yacc_cpps := $(addprefix \
599 $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION)))
600
601yacc_cpps := $(y_yacc_cpps) $(yy_yacc_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800602yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h)
603yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o)
604
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000605ifneq ($(strip $(y_yacc_cpps)),)
606$(y_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700607 $(TOPDIR)$(LOCAL_PATH)/%.y \
Dan Albert954b5bd2014-11-08 22:20:03 -0800608 $(lex_cpps) $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800609 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
610$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000611endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800612
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000613ifneq ($(strip $(yy_yacc_cpps)),)
614$(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
615 $(TOPDIR)$(LOCAL_PATH)/%.yy \
Dan Albert954b5bd2014-11-08 22:20:03 -0800616 $(lex_cpps) $(my_additional_dependencies)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000617 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
618$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
619endif
620
621ifneq ($(strip $(yacc_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800622$(yacc_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
623$(yacc_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
624$(yacc_objects): $(intermediates)/%.o: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
625 $(transform-$(PRIVATE_HOST)cpp-to-o)
626endif
627
628###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000629## LEX: Compile .l and .ll files to .cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800630###########################################################
631
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000632l_lex_sources := $(filter %.l,$(my_src_files))
633l_lex_cpps := $(addprefix \
634 $(intermediates)/,$(l_lex_sources:.l=$(LOCAL_CPP_EXTENSION)))
635
636ll_lex_sources := $(filter %.ll,$(my_src_files))
637ll_lex_cpps := $(addprefix \
638 $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION)))
639
640lex_cpps := $(l_lex_cpps) $(ll_lex_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800641lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o)
642
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000643ifneq ($(strip $(l_lex_cpps)),)
644$(l_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700645 $(TOPDIR)$(LOCAL_PATH)/%.l
The Android Open Source Project88b60792009-03-03 19:28:42 -0800646 $(transform-l-to-cpp)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000647endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800648
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000649ifneq ($(strip $(ll_lex_cpps)),)
650$(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
651 $(TOPDIR)$(LOCAL_PATH)/%.ll
652 $(transform-l-to-cpp)
653endif
654
655ifneq ($(strip $(lex_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800656$(lex_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
657$(lex_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
658$(lex_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700659 $(intermediates)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800660 $(my_additional_dependencies) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700661 $(yacc_headers)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800662 $(transform-$(PRIVATE_HOST)cpp-to-o)
663endif
664
665###########################################################
666## C++: Compile .cpp files to .o.
667###########################################################
668
Jeff Browne33ba4c2011-07-11 22:11:46 -0700669# we also do this on host modules, even though
The Android Open Source Project88b60792009-03-03 19:28:42 -0800670# it's not really arm, because there are files that are shared.
Ying Wangfb22a422015-03-10 18:03:11 -0700671cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(my_src_files)))
672dotdot_arm_sources := $(filter ../%,$(cpp_arm_sources))
673cpp_arm_sources := $(filter-out ../%,$(cpp_arm_sources))
674cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800675
Ying Wangfb22a422015-03-10 18:03:11 -0700676# For source files starting with ../, we remove all the ../ in the object file path,
677# to avoid object file escaping the intermediate directory.
678dotdot_arm_objects :=
679$(foreach s,$(dotdot_arm_sources),\
680 $(eval $(call compile-dotdot-cpp-file,$(s),\
681 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
682 dotdot_arm_objects)))
683
684dotdot_sources := $(filter ../%$(LOCAL_CPP_EXTENSION),$(my_src_files))
685dotdot_objects :=
686$(foreach s,$(dotdot_sources),\
687 $(eval $(call compile-dotdot-cpp-file,$(s),\
688 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
689 dotdot_objects)))
690
691cpp_normal_sources := $(filter-out ../%,$(filter %$(LOCAL_CPP_EXTENSION),$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800692cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o))
693
Ying Wangfb22a422015-03-10 18:03:11 -0700694$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
695$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
696$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
697$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800698
699cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects)
700
701ifneq ($(strip $(cpp_objects)),)
702$(cpp_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700703 $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800704 $(yacc_cpps) $(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 $(cpp_objects:%.o=%.P)
708endif
709
Ying Wangfb22a422015-03-10 18:03:11 -0700710cpp_objects += $(dotdot_arm_objects) $(dotdot_objects)
711
The Android Open Source Project88b60792009-03-03 19:28:42 -0800712###########################################################
713## C++: Compile generated .cpp files to .o.
714###########################################################
715
Ying Wangec6d6262014-01-16 16:21:03 -0800716gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800717gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o)
718
719ifneq ($(strip $(gen_cpp_objects)),)
720# Compile all generated files as thumb.
721# TODO: support compiling certain generated files as arm.
722$(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
723$(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400724$(gen_cpp_objects): $(intermediates)/%.o: \
725 $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800726 $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800727 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800728 $(transform-$(PRIVATE_HOST)cpp-to-o)
729-include $(gen_cpp_objects:%.o=%.P)
730endif
731
732###########################################################
733## S: Compile generated .S and .s files to .o.
734###########################################################
735
Ying Wangec6d6262014-01-16 16:21:03 -0800736gen_S_sources := $(filter %.S,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800737gen_S_objects := $(gen_S_sources:%.S=%.o)
738
739ifneq ($(strip $(gen_S_sources)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400740$(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800741 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800742 $(transform-$(PRIVATE_HOST)s-to-o)
743-include $(gen_S_objects:%.o=%.P)
744endif
745
Ying Wangec6d6262014-01-16 16:21:03 -0800746gen_s_sources := $(filter %.s,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800747gen_s_objects := $(gen_s_sources:%.s=%.o)
748
749ifneq ($(strip $(gen_s_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400750$(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800751 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800752 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
753-include $(gen_s_objects:%.o=%.P)
754endif
755
756gen_asm_objects := $(gen_S_objects) $(gen_s_objects)
757
758###########################################################
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000759## o: Include generated .o files in output.
760###########################################################
761
Ying Wangec6d6262014-01-16 16:21:03 -0800762gen_o_objects := $(filter %.o,$(my_generated_sources))
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000763
764###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800765## C: Compile .c files to .o.
766###########################################################
767
Ying Wangfb22a422015-03-10 18:03:11 -0700768c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files)))
769dotdot_arm_sources := $(filter ../%,$(c_arm_sources))
770c_arm_sources := $(filter-out ../%,$(c_arm_sources))
771c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800772
Ying Wangfb22a422015-03-10 18:03:11 -0700773# For source files starting with ../, we remove all the ../ in the object file path,
774# to avoid object file escaping the intermediate directory.
775dotdot_arm_objects :=
776$(foreach s,$(dotdot_arm_sources),\
777 $(eval $(call compile-dotdot-c-file,$(s),\
778 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
779 dotdot_arm_objects)))
780
781dotdot_sources := $(filter ../%.c, $(my_src_files))
782dotdot_objects :=
783$(foreach s, $(dotdot_sources),\
784 $(eval $(call compile-dotdot-c-file,$(s),\
785 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
786 dotdot_objects)))
787
788c_normal_sources := $(filter-out ../%,$(filter %.c,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800789c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o))
790
Ying Wangfb22a422015-03-10 18:03:11 -0700791$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
792$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
793$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
794$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800795
796c_objects := $(c_arm_objects) $(c_normal_objects)
797
798ifneq ($(strip $(c_objects)),)
Ying Wangfaeb6932015-04-07 11:59:34 -0700799$(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800800 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800801 $(transform-$(PRIVATE_HOST)c-to-o)
802-include $(c_objects:%.o=%.P)
803endif
804
Ying Wangfb22a422015-03-10 18:03:11 -0700805c_objects += $(dotdot_arm_objects) $(dotdot_objects)
806
The Android Open Source Project88b60792009-03-03 19:28:42 -0800807###########################################################
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700808## C: Compile generated .c files to .o.
809###########################################################
810
Ying Wangec6d6262014-01-16 16:21:03 -0800811gen_c_sources := $(filter %.c,$(my_generated_sources))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700812gen_c_objects := $(gen_c_sources:%.c=%.o)
813
814ifneq ($(strip $(gen_c_objects)),)
815# Compile all generated files as thumb.
816# TODO: support compiling certain generated files as arm.
817$(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
818$(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wangfaeb6932015-04-07 11:59:34 -0700819$(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800820 $(my_additional_dependencies)
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700821 $(transform-$(PRIVATE_HOST)c-to-o)
822-include $(gen_c_objects:%.o=%.P)
823endif
824
825###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200826## ObjC: Compile .m files to .o
827###########################################################
828
Ying Wangb8e01852014-01-23 15:09:04 -0800829objc_sources := $(filter %.m,$(my_src_files))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200830objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o))
831
832ifneq ($(strip $(objc_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400833$(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800834 $(my_additional_dependencies)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200835 $(transform-$(PRIVATE_HOST)m-to-o)
836-include $(objc_objects:%.o=%.P)
837endif
838
839###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800840## AS: Compile .S files to .o.
841###########################################################
842
Ying Wangb8e01852014-01-23 15:09:04 -0800843asm_sources_S := $(filter %.S,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -0700844dotdot_sources := $(filter ../%,$(asm_sources_S))
845asm_sources_S := $(filter-out ../%,$(asm_sources_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800846asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o))
847
Ying Wangfb22a422015-03-10 18:03:11 -0700848dotdot_objects_S :=
849$(foreach s,$(dotdot_sources),\
850 $(eval $(call compile-dotdot-s-file,$(s),\
851 $(my_additional_dependencies),\
852 dotdot_objects_S)))
853
The Android Open Source Project88b60792009-03-03 19:28:42 -0800854ifneq ($(strip $(asm_objects_S)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400855$(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800856 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800857 $(transform-$(PRIVATE_HOST)s-to-o)
858-include $(asm_objects_S:%.o=%.P)
859endif
860
Ying Wangb8e01852014-01-23 15:09:04 -0800861asm_sources_s := $(filter %.s,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -0700862dotdot_sources := $(filter ../%,$(asm_sources_s))
863asm_sources_s := $(filter-out ../%,$(asm_sources_s))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800864asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o))
865
Ying Wangfb22a422015-03-10 18:03:11 -0700866dotdot_objects_s :=
867$(foreach s,$(dotdot_sources),\
868 $(eval $(call compile-dotdot-s-file-no-deps,$(s),\
869 $(my_additional_dependencies),\
870 dotdot_objects_s)))
871
The Android Open Source Project88b60792009-03-03 19:28:42 -0800872ifneq ($(strip $(asm_objects_s)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400873$(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800874 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800875 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800876endif
877
Ying Wangfb22a422015-03-10 18:03:11 -0700878asm_objects := $(dotdot_objects_S) $(dotdot_objects_s) $(asm_objects_S) $(asm_objects_s)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800879
880
Ying Wangfe1e5c32015-03-09 18:57:40 -0700881# .asm for x86/x86_64 needs to be compiled with yasm.
Ying Wang7b913ce2014-06-05 19:05:47 -0700882asm_sources_asm := $(filter %.asm,$(my_src_files))
883ifneq ($(strip $(asm_sources_asm)),)
884asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o))
885$(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \
Dan Albert954b5bd2014-11-08 22:20:03 -0800886 $(my_additional_dependencies)
Ying Wang7b913ce2014-06-05 19:05:47 -0700887 $(transform-asm-to-o)
888
889asm_objects += $(asm_objects_asm)
890endif
Ying Wang7b913ce2014-06-05 19:05:47 -0700891
Jeff Davidson680f0712015-01-08 18:25:30 -0800892
893##########################################################
894## Set up installed module dependency
895## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for
896## they may cusomize their install path with LOCAL_MODULE_PATH
897##########################################################
898# Get the list of INSTALLED libraries as module names.
899ifdef LOCAL_SDK_VERSION
900 installed_shared_library_module_names := \
901 $(my_shared_libraries)
902else
903 installed_shared_library_module_names := \
904 $(my_shared_libraries) $(my_system_shared_libraries)
905endif
906
907# The real dependency will be added after all Android.mks are loaded and the install paths
908# of the shared libraries are determined.
909ifdef LOCAL_INSTALLED_MODULE
910ifdef installed_shared_library_module_names
911$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
912 $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names)))
913endif
914endif
915
916
Ying Wang5f074802011-11-08 09:31:21 -0800917####################################################
918## Import includes
919####################################################
920import_includes := $(intermediates)/import_includes
921import_includes_deps := $(strip \
922 $(foreach l, $(installed_shared_library_module_names), \
Ying Wang6ef65192014-01-15 16:02:16 -0800923 $(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 -0800924 $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \
Ying Wang6ef65192014-01-15 16:02:16 -0800925 $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/export_includes))
Ying Wang14d02a32015-01-22 15:44:04 -0800926$(import_includes): PRIVATE_IMPORT_EXPORT_INCLUDES := $(import_includes_deps)
927$(import_includes) : $(LOCAL_MODULE_MAKEFILE) $(import_includes_deps)
Ying Wang5f074802011-11-08 09:31:21 -0800928 @echo Import includes file: $@
929 $(hide) mkdir -p $(dir $@) && rm -f $@
930ifdef import_includes_deps
Ying Wang14d02a32015-01-22 15:44:04 -0800931 $(hide) for f in $(PRIVATE_IMPORT_EXPORT_INCLUDES); do \
Ying Wang5f074802011-11-08 09:31:21 -0800932 cat $$f >> $@; \
933 done
934else
935 $(hide) touch $@
936endif
937
The Android Open Source Project88b60792009-03-03 19:28:42 -0800938###########################################################
939## Common object handling.
940###########################################################
941
942# some rules depend on asm_objects being first. If your code depends on
943# being first, it's reasonable to require it to be assembly
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100944normal_objects := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700945 $(asm_objects) \
946 $(cpp_objects) \
947 $(gen_cpp_objects) \
948 $(gen_asm_objects) \
949 $(c_objects) \
950 $(gen_c_objects) \
951 $(objc_objects) \
952 $(yacc_objects) \
953 $(lex_objects) \
954 $(proto_generated_objects) \
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100955 $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES))
956
957all_objects := $(normal_objects) $(gen_o_objects)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800958
Colin Cross2d206702014-02-13 13:41:52 -0800959my_c_includes += $(TOPDIR)$(LOCAL_PATH) $(intermediates) $(generated_sources_dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800960
Ying Wang848020f2012-08-14 10:13:16 -0700961ifndef LOCAL_SDK_VERSION
Ying Wang6ef65192014-01-15 16:02:16 -0800962 my_c_includes += $(JNI_H_INCLUDE)
Ying Wangbce4b752010-07-22 15:51:56 -0700963endif
964
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100965# all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES;
966# use normal_objects here to avoid creating circular dependencies. This assumes
967# that custom build rules which generate .o files don't consume other generated
968# sources as input (or if they do they take care of that dependency themselves).
Ying Wangec6d6262014-01-16 16:21:03 -0800969$(normal_objects) : | $(my_generated_sources)
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100970$(all_objects) : | $(import_includes)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800971ALL_C_CPP_ETC_OBJECTS += $(all_objects)
972
The Android Open Source Project88b60792009-03-03 19:28:42 -0800973
974###########################################################
975# Standard library handling.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800976###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800977
978###########################################################
979# The list of libraries that this module will link against are in
980# these variables. Each is a list of bare module names like "libc libm".
981#
982# LOCAL_SHARED_LIBRARIES
983# LOCAL_STATIC_LIBRARIES
984# LOCAL_WHOLE_STATIC_LIBRARIES
985#
986# We need to convert the bare names into the dependencies that
987# we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE.
988# LOCAL_BUILT_MODULE should depend on the BUILT versions of the
989# libraries, so that simply building this module doesn't force
990# an install of a library. Similarly, LOCAL_INSTALLED_MODULE
991# should depend on the INSTALLED versions of the libraries so
992# that they get installed when this module does.
993###########################################################
994# NOTE:
995# WHOLE_STATIC_LIBRARIES are libraries that are pulled into the
996# module without leaving anything out, which is useful for turning
997# a collection of .a files into a .so file. Linking against a
998# normal STATIC_LIBRARY will only pull in code/symbols that are
999# referenced by the module. (see gcc/ld's --whole-archive option)
1000###########################################################
1001
1002# Get the list of BUILT libraries, which are under
1003# various intermediates directories.
1004so_suffix := $($(my_prefix)SHLIB_SUFFIX)
1005a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX)
1006
Ying Wang848020f2012-08-14 10:13:16 -07001007ifdef LOCAL_SDK_VERSION
The Android Open Source Project88b60792009-03-03 19:28:42 -08001008built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001009 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001010 $(addsuffix $(so_suffix), \
Ying Wang6ef65192014-01-15 16:02:16 -08001011 $(my_shared_libraries)))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001012
Ying Wangd8d37212014-03-21 16:17:04 -07001013# Add the NDK libraries to the built module dependency
Ying Wangcce4c972011-03-03 18:53:53 -08001014my_system_shared_libraries_fullpath := \
1015 $(my_ndk_stl_shared_lib_fullpath) \
Andrew Hsieh140761af02014-04-25 23:47:10 -07001016 $(addprefix $(my_ndk_sysroot_lib)/, \
Ying Wangd8d37212014-03-21 16:17:04 -07001017 $(addsuffix $(so_suffix), $(my_system_shared_libraries)))
Ying Wang1a081002010-07-13 14:55:47 -07001018
1019built_shared_libraries += $(my_system_shared_libraries_fullpath)
Ying Wang1a081002010-07-13 14:55:47 -07001020else
Ying Wang1a081002010-07-13 14:55:47 -07001021built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001022 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
Ying Wang1a081002010-07-13 14:55:47 -07001023 $(addsuffix $(so_suffix), \
Ying Wangd8d37212014-03-21 16:17:04 -07001024 $(installed_shared_library_module_names)))
Ying Wang1a081002010-07-13 14:55:47 -07001025endif
1026
The Android Open Source Project88b60792009-03-03 19:28:42 -08001027built_static_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001028 $(foreach lib,$(my_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001029 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -08001030 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 -08001031
Ying Wang848020f2012-08-14 10:13:16 -07001032ifdef LOCAL_SDK_VERSION
Ying Wangcce4c972011-03-03 18:53:53 -08001033built_static_libraries += $(my_ndk_stl_static_lib)
1034endif
1035
The Android Open Source Project88b60792009-03-03 19:28:42 -08001036built_whole_libraries := \
Colin Cross90353fe2014-02-04 14:53:25 -08001037 $(foreach lib,$(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001038 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -08001039 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 -08001040
The Android Open Source Project88b60792009-03-03 19:28:42 -08001041# We don't care about installed static libraries, since the
1042# libraries have already been linked into the module at that point.
1043# We do, however, care about the NOTICE files for any static
Steve Blockd14d3b42012-03-01 11:34:41 +00001044# libraries that we use. (see notice_files.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001045
1046installed_static_library_notice_file_targets := \
Colin Cross90353fe2014-02-04 14:53:25 -08001047 $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001048 NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib))
1049
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001050# Default is -fno-rtti.
Doug Kwane3c3c6d2011-06-07 10:55:48 -07001051ifeq ($(strip $(LOCAL_RTTI_FLAG)),)
1052LOCAL_RTTI_FLAG := -fno-rtti
1053endif
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001054
The Android Open Source Project88b60792009-03-03 19:28:42 -08001055###########################################################
1056# Rule-specific variable definitions
1057###########################################################
Logan Chiene6f65432013-12-10 19:07:41 +08001058
Ying Wang824344a2014-05-27 13:03:36 -07001059ifeq ($(my_clang),true)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001060my_cflags += $(LOCAL_CLANG_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -08001061my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS)
Dan Albertd2fa96d2014-11-28 14:00:12 -08001062my_cppflags += $(LOCAL_CLANG_CPPFLAGS)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001063my_asflags += $(LOCAL_CLANG_ASFLAGS)
1064my_ldflags += $(LOCAL_CLANG_LDFLAGS)
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -07001065my_cflags += $(LOCAL_CLANG_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CFLAGS_$(my_32_64_bit_suffix))
Stephen Hines15680292014-11-26 00:53:46 -08001066my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CONLYFLAGS_$(my_32_64_bit_suffix))
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -07001067my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix))
1068my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix))
1069my_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 -08001070my_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cflags))
1071my_cppflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cppflags))
1072my_asflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_asflags))
1073my_ldflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_ldflags))
Logan Chiene6f65432013-12-10 19:07:41 +08001074endif
1075
Ying Wang45d01432014-10-28 14:50:59 -07001076ifeq ($(my_fdo_build), true)
1077 my_cflags := $(patsubst -Os,-O2,$(my_cflags))
1078 fdo_incompatible_flags := -fno-early-inlining -finline-limit=%
1079 my_cflags := $(filter-out $(fdo_incompatible_flags),$(my_cflags))
Dehao Chen295a6d22014-09-19 10:18:12 -07001080endif
1081
The Android Open Source Project88b60792009-03-03 19:28:42 -08001082$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -08001083$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags)
Stephen Hines15680292014-11-26 00:53:46 -08001084$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(my_conlyflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001085$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags)
1086$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags)
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001087$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001088$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001089$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes)
Ying Wang5f074802011-11-08 09:31:21 -08001090$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes)
Ying Wang6ef65192014-01-15 16:02:16 -08001091$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags)
Dan Albertb05f2ca2014-09-12 14:46:57 -07001092$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs)
Ying Wangb8e01852014-01-23 15:09:04 -08001093$(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 -08001094
1095# this is really the way to get the files onto the command line instead
1096# of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work
1097$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries)
1098$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries)
1099$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries)
1100$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects)
1101
1102###########################################################
1103# Define library dependencies.
1104###########################################################
1105# all_libraries is used for the dependencies on LOCAL_BUILT_MODULE.
1106all_libraries := \
1107 $(built_shared_libraries) \
1108 $(built_static_libraries) \
1109 $(built_whole_libraries)
1110
The Android Open Source Project88b60792009-03-03 19:28:42 -08001111# Also depend on the notice files for any static libraries that
1112# are linked into this module. This will force them to be installed
1113# when this module is.
1114$(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets)
Ying Wang5f074802011-11-08 09:31:21 -08001115
1116###########################################################
1117# Export includes
1118###########################################################
1119export_includes := $(intermediates)/export_includes
Ying Wangfaeb6932015-04-07 11:59:34 -07001120$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(my_export_c_include_dirs)
Ying Wang49085952014-05-06 13:03:32 -07001121# Make sure .pb.h are already generated before any dependent source files get compiled.
Ying Wangfaeb6932015-04-07 11:59:34 -07001122$(export_includes) : $(LOCAL_MODULE_MAKEFILE) $(proto_generated_headers)
Ying Wang5f074802011-11-08 09:31:21 -08001123 @echo Export includes file: $< -- $@
1124 $(hide) mkdir -p $(dir $@) && rm -f $@
Ying Wangfaeb6932015-04-07 11:59:34 -07001125ifdef my_export_c_include_dirs
Ying Wang5f074802011-11-08 09:31:21 -08001126 $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
1127 echo "-I $$d" >> $@; \
1128 done
1129else
1130 $(hide) touch $@
1131endif
Ying Wang616e5962012-04-18 17:35:55 -07001132
1133# Make sure export_includes gets generated when you are running mm/mmm
1134$(LOCAL_BUILT_MODULE) : | $(export_includes)