blob: d7b2c6e4b1a0599b5a43d65d7300c1e51f921ec1 [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)
47my_cxx := $(LOCAL_CXX)
48my_c_includes := $(LOCAL_C_INCLUDES)
49my_generated_sources := $(LOCAL_GENERATED_SOURCES)
50my_native_coverage := $(LOCAL_NATIVE_COVERAGE)
51my_additional_dependencies := $(LOCAL_MODULE_MAKEFILE) $(LOCAL_ADDITIONAL_DEPENDENCIES)
Ying Wangfaeb6932015-04-07 11:59:34 -070052my_export_c_include_dirs := $(LOCAL_EXPORT_C_INCLUDE_DIRS)
Dan Albertd3d894d2014-11-14 15:28:49 -080053
Dan Albertb58fb4a2014-11-14 17:15:00 -080054ifdef LOCAL_IS_HOST_MODULE
55my_allow_undefined_symbols := true
56else
57my_allow_undefined_symbols := $(strip $(LOCAL_ALLOW_UNDEFINED_SYMBOLS))
58endif
59
Andrew Hsieh140761af02014-04-25 23:47:10 -070060my_ndk_sysroot :=
61my_ndk_sysroot_include :=
62my_ndk_sysroot_lib :=
Ying Wang848020f2012-08-14 10:13:16 -070063ifdef LOCAL_SDK_VERSION
Ying Wangfe1bfe72012-08-14 11:08:03 -070064 ifdef LOCAL_NDK_VERSION
65 $(error $(LOCAL_PATH): LOCAL_NDK_VERSION is now retired.)
66 endif
Ying Wang1a081002010-07-13 14:55:47 -070067 ifdef LOCAL_IS_HOST_MODULE
Ian Rogers76a6dc32012-10-01 16:36:23 -070068 $(error $(LOCAL_PATH): LOCAL_SDK_VERSION cannot be used in host module)
Ying Wang1a081002010-07-13 14:55:47 -070069 endif
Ying Wang848020f2012-08-14 10:13:16 -070070 my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/sources
Andrew Hsieh140761af02014-04-25 23:47:10 -070071 my_ndk_sysroot := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
72 my_ndk_sysroot_include := $(my_ndk_sysroot)/usr/include
73 ifeq (x86_64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
74 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib64
Duane Sand1a074872014-11-08 15:25:18 -080075 else ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
76 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/libr6
Andrew Hsieh140761af02014-04-25 23:47:10 -070077 else
78 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib
79 endif
Ying Wangcce4c972011-03-03 18:53:53 -080080
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -070081 # The bionic linker now has support for packed relocations and gnu style
82 # hashes (which are much faster!), but shipping to older devices requires
83 # the old style hash and disabling packed relocations.
Dan Albertd3d894d2014-11-14 15:28:49 -080084 #ifeq ($(shell expr $(LOCAL_SDK_VERSION) >= FIRST_SUPPORTED_VERSION),0)
85 my_ldflags += -Wl,--hash-style=sysv
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -070086 LOCAL_PACK_MODULE_RELOCATIONS := false
Dan Albertd3d894d2014-11-14 15:28:49 -080087 #endif
88
Ying Wangcce4c972011-03-03 18:53:53 -080089 # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location.
90 # See ndk/docs/CPLUSPLUS-SUPPORT.html
91 my_ndk_stl_include_path :=
92 my_ndk_stl_shared_lib_fullpath :=
93 my_ndk_stl_shared_lib :=
94 my_ndk_stl_static_lib :=
Andrew Hsieh73d800e2014-03-04 17:11:52 +080095 my_ndk_stl_cppflags :=
Duane Sand1a074872014-11-08 15:25:18 -080096 my_cpu_variant := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)
97 ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
98 my_cpu_variant := mips32r6
99 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800100 LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800101 ifeq (,$(LOCAL_NDK_STL_VARIANT))
102 LOCAL_NDK_STL_VARIANT := system
103 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800104 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 -0700105 $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800106 endif
107 ifeq (system,$(LOCAL_NDK_STL_VARIANT))
108 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
109 # for "system" variant, the shared library exists in the system library and -lstdc++ is added by default.
110 else # LOCAL_NDK_STL_VARIANT is not system
111 ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
112 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
113 ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800114 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 -0800115 else
Duane Sand1a074872014-11-08 15:25:18 -0800116 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 -0800117 my_ndk_stl_shared_lib := -lstlport_shared
118 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800119 else # LOCAL_NDK_STL_VARIANT is not stlport_* either
120 ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
121 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include \
122 $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include \
123 $(my_ndk_source_root)/android/support/include
124 ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800125 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 +0800126 else
Duane Sand1a074872014-11-08 15:25:18 -0800127 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 +0800128 my_ndk_stl_shared_lib := -lc++_shared
129 endif
130 my_ndk_stl_cppflags := -std=c++11
Ying Wangcce4c972011-03-03 18:53:53 -0800131 else
132 # LOCAL_NDK_STL_VARIANT is gnustl_static
Duane Sand1a074872014-11-08 15:25:18 -0800133 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 -0700134 $(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 -0800135 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 -0800136 endif
137 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800138 endif
Ying Wang1a081002010-07-13 14:55:47 -0700139endif
140
Dan Albert95994de2014-08-07 18:29:11 -0700141# MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
142# all code is position independent, and then those warnings get promoted to
143# errors.
Ying Wang594a10a2014-08-07 20:08:04 -0700144ifndef USE_MINGW
Dan Albert4803ce22014-08-06 12:36:46 -0700145ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES)
146my_cflags += -fpie
147else
148my_cflags += -fPIC
149endif
Dan Albert95994de2014-08-07 18:29:11 -0700150endif
Dan Albert4803ce22014-08-06 12:36:46 -0700151
Ying Wang6feb6d52014-04-17 10:03:35 -0700152my_src_files += $(LOCAL_SRC_FILES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SRC_FILES_$(my_32_64_bit_suffix))
153my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix))
154my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix))
155my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix))
156my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix))
157my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix))
158my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix))
159my_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 -0800160
Dan Albertdb905e72014-08-18 11:14:38 -0700161my_clang := $(strip $(LOCAL_CLANG))
Ying Wang824344a2014-05-27 13:03:36 -0700162ifdef LOCAL_CLANG_$(my_32_64_bit_suffix)
Dan Albertdb905e72014-08-18 11:14:38 -0700163my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix)))
Ying Wang824344a2014-05-27 13:03:36 -0700164endif
165ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Dan Albertdb905e72014-08-18 11:14:38 -0700166my_clang := $(strip $(LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Ying Wang824344a2014-05-27 13:03:36 -0700167endif
168
Tim Murray92d79cb2014-04-04 14:38:29 -0700169# clang is enabled by default for host builds
170# enable it unless we've specifically disabled clang above
171ifdef LOCAL_IS_HOST_MODULE
Tim Murrayf3ca3d52014-07-24 15:20:18 -0700172 ifneq ($(HOST_OS),windows)
Tim Murray5ca1dc12014-07-24 14:42:53 -0700173 ifeq ($(my_clang),)
174 my_clang := true
175 endif
176 endif
Tim Murray92d79cb2014-04-04 14:38:29 -0700177endif
178
Tim Murray06659bc2014-08-13 11:53:07 -0700179# Add option to make clang the default for device build
180ifeq ($(USE_CLANG_PLATFORM_BUILD),true)
181 ifeq ($(my_clang),)
182 my_clang := true
183 endif
184endif
185
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800186# arch-specific static libraries go first so that generic ones can depend on them
Ying Wang6feb6d52014-04-17 10:03:35 -0700187my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries)
188my_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 -0800189
Ying Wang6feb6d52014-04-17 10:03:35 -0700190my_cflags := $(filter-out $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_UNSUPPORTED_CFLAGS),$(my_cflags))
Ying Wang6ef65192014-01-15 16:02:16 -0800191
Ying Wang75e8fcb2014-10-07 13:03:29 -0700192include $(BUILD_SYSTEM)/cxx_stl_setup.mk
Ying Wangd90de322014-05-23 16:42:37 -0700193
Ying Wang285045b2013-08-13 12:35:10 -0700194# Add static HAL libraries
195ifdef LOCAL_HAL_STATIC_LIBRARIES
196$(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \
197 $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\
Ying Wang6ef65192014-01-15 16:02:16 -0800198 $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\
199 $(eval my_static_libraries += $(lib).default)))
Ying Wang285045b2013-08-13 12:35:10 -0700200b_lib :=
201endif
202
Dan Albert4ae5d4b2014-10-31 16:23:08 -0700203include $(BUILD_SYSTEM)/config_sanitizers.mk
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400204
Ying Wangba8b3772014-03-10 18:23:08 -0700205ifeq ($(strip $($(LOCAL_2ND_ARCH_VAR_PREFIX)WITHOUT_$(my_prefix)CLANG)),true)
Ying Wang824344a2014-05-27 13:03:36 -0700206 my_clang :=
Mike Lockwood051a1742013-06-14 10:52:50 -0700207endif
208
Shih-wei Liaoc8dfc162013-01-27 01:45:59 -0800209# Add in libcompiler_rt for all regular device builds
Dan Albert30a9c352015-04-09 14:41:06 -0700210ifeq (,$(LOCAL_SDK_VERSION)$(WITHOUT_LIBCOMPILER_RT))
Ying Wang6ef65192014-01-15 16:02:16 -0800211 my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES)
Stephen Hinesc72f3962012-06-11 14:53:34 -0700212endif
213
Jing Yu2dcc8062009-09-21 16:31:50 -0700214####################################################
215## Add FDO flags if FDO is turned on and supported
Dehao Chen295a6d22014-09-19 10:18:12 -0700216## Please note that we will do option filtering during FDO build.
217## i.e. Os->O2, remove -fno-early-inline and -finline-limit.
218##################################################################
Ying Wang45d01432014-10-28 14:50:59 -0700219my_fdo_build :=
220ifneq ($(filter true always, $(LOCAL_FDO_SUPPORT)),)
221 ifeq ($(BUILD_FDO_INSTRUMENT),true)
222 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_CFLAGS)
223 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_LDFLAGS)
224 my_fdo_build := true
225 else ifneq ($(filter true,$(BUILD_FDO_OPTIMIZE))$(filter always,$(LOCAL_FDO_SUPPORT)),)
226 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_OPTIMIZE_CFLAGS)
227 my_fdo_build := true
synergydev4a605762013-08-05 02:44:37 -0700228 endif
Jing Yu2dcc8062009-09-21 16:31:50 -0700229endif
230
The Android Open Source Project88b60792009-03-03 19:28:42 -0800231###########################################################
Jim Huang20d1ba62010-10-14 16:15:56 +0800232## Explicitly declare assembly-only __ASSEMBLY__ macro for
233## assembly source
234###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800235my_asflags += -D__ASSEMBLY__
Jim Huang20d1ba62010-10-14 16:15:56 +0800236
Ying Wangd8d37212014-03-21 16:17:04 -0700237
Jim Huang20d1ba62010-10-14 16:15:56 +0800238###########################################################
Ying Wang1a081002010-07-13 14:55:47 -0700239## Define PRIVATE_ variables from global vars
240###########################################################
Ying Wang7fff9a12014-01-09 14:39:41 -0800241ifndef LOCAL_IS_HOST_MODULE
Ying Wang848020f2012-08-14 10:13:16 -0700242ifdef LOCAL_SDK_VERSION
Ying Wang1a081002010-07-13 14:55:47 -0700243my_target_project_includes :=
Andrew Hsieh140761af02014-04-25 23:47:10 -0700244my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_sysroot_include)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800245my_target_global_cppflags := $(my_ndk_stl_cppflags)
Ying Wang1a081002010-07-13 14:55:47 -0700246else
Ying Wang6ef65192014-01-15 16:02:16 -0800247my_target_project_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES)
248my_target_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_C_INCLUDES)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800249my_target_global_cppflags :=
Ying Wangf4723fa2013-08-15 11:01:10 -0700250endif # LOCAL_SDK_VERSION
251
Ying Wang824344a2014-05-27 13:03:36 -0700252ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800253my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800254my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800255my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CPPFLAGS)
Ying Wang1f982832014-02-06 18:08:44 -0800256my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_LDFLAGS)
Ying Wangda4bf422012-08-16 16:45:01 -0700257else
Ying Wang6ef65192014-01-15 16:02:16 -0800258my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800259my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800260my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800261my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700262endif # my_clang
Ying Wangda4bf422012-08-16 16:45:01 -0700263
Ying Wang1a081002010-07-13 14:55:47 -0700264$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes)
Evgeniy Stepanova7095e92012-03-30 12:18:52 +0400265$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes)
Ying Wang1a081002010-07-13 14:55:47 -0700266$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800267$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CONLYFLAGS := $(my_target_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800268$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags)
269$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags)
270
Ying Wang7fff9a12014-01-09 14:39:41 -0800271else # LOCAL_IS_HOST_MODULE
272
Ying Wang824344a2014-05-27 13:03:36 -0700273ifeq ($(my_clang),true)
Ying Wang6feb6d52014-04-17 10:03:35 -0700274my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800275my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CONLYFLAGS)
Ying Wang6feb6d52014-04-17 10:03:35 -0700276my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CPPFLAGS)
277my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_LDFLAGS)
Stephen Hinesf0089662014-09-25 22:35:16 -0700278my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Logan Chiene6f65432013-12-10 19:07:41 +0800279else
Ying Wang6feb6d52014-04-17 10:03:35 -0700280my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800281my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CONLYFLAGS)
Ying Wang6feb6d52014-04-17 10:03:35 -0700282my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS)
283my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LDFLAGS)
284my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Ying Wang824344a2014-05-27 13:03:36 -0700285endif # my_clang
Logan Chiene6f65432013-12-10 19:07:41 +0800286
287$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_C_INCLUDES := $(my_host_c_includes)
288$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800289$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CONLYFLAGS := $(my_host_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800290$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags)
291$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags)
292endif # LOCAL_IS_HOST_MODULE
Ying Wang1a081002010-07-13 14:55:47 -0700293
Dan Albert43e128a2015-01-23 16:12:57 -0800294# To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and
295# build with NATIVE_COVERAGE=true in your enviornment. Note that the build
296# system is not sensitive to changes to NATIVE_COVERAGE, so you should do a
297# clean build of your module after toggling it.
298ifeq ($(NATIVE_COVERAGE),true)
299 ifeq ($(my_native_coverage),true)
Dan Albert343ed672015-01-25 16:20:57 -0800300 # Note that clang coverage doesn't play nicely with acov out of the box.
301 # Clang apparently generates .gcno files that aren't compatible with
302 # gcov-4.8. This can be solved by installing gcc-4.6 and invoking lcov
303 # with `--gcov-tool /usr/bin/gcov-4.6`.
304 #
305 # http://stackoverflow.com/questions/17758126/clang-code-coverage-invalid-output
Dan Albert2c03e042015-01-24 15:14:35 -0800306 my_cflags += --coverage -O0
Dan Albert343ed672015-01-25 16:20:57 -0800307 my_ldflags += --coverage
Dan Albert43e128a2015-01-23 16:12:57 -0800308 endif
309else
310 my_native_coverage := false
311endif
312
Ying Wang1a081002010-07-13 14:55:47 -0700313###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800314## Define PRIVATE_ variables used by multiple module types
315###########################################################
316$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700317 $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800318
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800319ifeq ($(strip $(WITH_SYNTAX_CHECK)),)
320 LOCAL_NO_SYNTAX_CHECK := true
321endif
322
Andrew Hsieh906cb782013-09-10 17:37:14 +0800323ifeq ($(strip $(WITH_STATIC_ANALYZER)),)
324 LOCAL_NO_STATIC_ANALYZER := true
325endif
326
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800327ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
328 my_syntax_arch := host
329else
Ying Wang6ef65192014-01-15 16:02:16 -0800330 my_syntax_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800331endif
332
Ying Wang6ef65192014-01-15 16:02:16 -0800333ifeq ($(strip $(my_cc)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700334 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800335 my_cc := $(CLANG)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400336 else
Ying Wang6ef65192014-01-15 16:02:16 -0800337 my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400338 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800339endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800340ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800341 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800342else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800343ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800344 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-syntax $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800345endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800346endif
Ying Wang6ef65192014-01-15 16:02:16 -0800347$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800348
Ying Wang6ef65192014-01-15 16:02:16 -0800349ifeq ($(strip $(my_cxx)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700350 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800351 my_cxx := $(CLANG_CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400352 else
Ying Wang6ef65192014-01-15 16:02:16 -0800353 my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400354 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800355endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800356ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800357 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-analyzer $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800358else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800359ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800360 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-syntax $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800361endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800362endif
Ying Wang6ef65192014-01-15 16:02:16 -0800363$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(my_cxx)
Dan Albertb6bb71b2014-08-05 14:44:41 -0700364$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800365
366# TODO: support a mix of standard extensions so that this isn't necessary
367LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION))
368ifeq ($(LOCAL_CPP_EXTENSION),)
369 LOCAL_CPP_EXTENSION := .cpp
370endif
371$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPP_EXTENSION := $(LOCAL_CPP_EXTENSION)
372
373# Certain modules like libdl have to have symbols resolved at runtime and blow
374# up if --no-undefined is passed to the linker.
375ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),)
Dan Albertb58fb4a2014-11-14 17:15:00 -0800376ifeq ($(my_allow_undefined_symbols),)
Ying Wang6ef65192014-01-15 16:02:16 -0800377 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)NO_UNDEFINED_LDFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800378endif
379endif
380
Ying Wangfcdabd42011-04-25 14:22:41 -0700381ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES))
382$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true
383else
384$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES :=
385endif
386
The Android Open Source Project88b60792009-03-03 19:28:42 -0800387###########################################################
388## Define arm-vs-thumb-mode flags.
389###########################################################
390LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE))
Ying Wangfaeb6932015-04-07 11:59:34 -0700391ifeq ($($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800392arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm)
393normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb)
394
Dave Bort95282482009-04-23 18:44:55 -0700395# Read the values from something like TARGET_arm_CFLAGS or
396# TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't
397# actually used (although they are usually empty).
Ying Wang6ef65192014-01-15 16:02:16 -0800398arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS)
399normal_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(normal_objects_mode)_CFLAGS)
Dan Albertdb905e72014-08-18 11:14:38 -0700400ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800401arm_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(arm_objects_cflags))
402normal_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(normal_objects_cflags))
Evgeniy Stepanovf50f4c52012-04-05 11:44:37 +0400403endif
404
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800405else
406arm_objects_mode :=
407normal_objects_mode :=
408arm_objects_cflags :=
409normal_objects_cflags :=
410endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800411
412###########################################################
413## Define per-module debugging flags. Users can turn on
414## debugging for a particular module by setting DEBUG_MODULE_ModuleName
415## to a non-empty value in their environment or buildspec.mk,
416## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the
417## debug flags that they want to use.
418###########################################################
419ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE))
420 debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS)
421else
422 debug_cflags :=
423endif
424
Tim Murraya7aa8002012-10-29 16:06:00 -0700425####################################################
426## Compile RenderScript with reflected C++
427####################################################
428
Ying Wangb8e01852014-01-23 15:09:04 -0800429renderscript_sources := $(filter %.rs %.fs,$(my_src_files))
Tim Murraya7aa8002012-10-29 16:06:00 -0700430
431ifneq (,$(renderscript_sources))
432
433renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
434RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp
435renderscript_intermediate := $(intermediates)/renderscript
436
437ifeq ($(LOCAL_RENDERSCRIPT_CC),)
438LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
439endif
440
441# Turn on all warnings and warnings as errors for RS compiles.
442# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
443renderscript_flags := -Wall -Werror
444renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
Ying Wangacaada12014-09-10 16:11:41 -0700445# -m32 or -m64
446renderscript_flags += -m$(my_32_64_bit_suffix)
Tim Murrayf0020c62014-09-10 15:11:01 -0700447
Ying Wang6ef65192014-01-15 16:02:16 -0800448renderscript_includes := \
Tim Murraya7aa8002012-10-29 16:06:00 -0700449 $(TOPDIR)external/clang/lib/Headers \
450 $(TOPDIR)frameworks/rs/scriptc \
451 $(LOCAL_RENDERSCRIPT_INCLUDES)
452
453ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
Ying Wang6ef65192014-01-15 16:02:16 -0800454renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
Tim Murraya7aa8002012-10-29 16:06:00 -0700455endif
456
Ying Wangb9319562015-04-03 16:15:28 -0700457bc_dep_files := $(addprefix $(renderscript_intermediate)/, \
458 $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
459
Ying Wang6ef65192014-01-15 16:02:16 -0800460$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes)
Tim Murraya7aa8002012-10-29 16:06:00 -0700461$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
462$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
463$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
464$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate)
Ying Wangb9319562015-04-03 16:15:28 -0700465$(RenderScript_file_stamp): PRIVATE_DEP_FILES := $(bc_dep_files)
Tim Murraya7aa8002012-10-29 16:06:00 -0700466$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
467 $(transform-renderscripts-to-cpp-and-bc)
468
Ying Wangb9319562015-04-03 16:15:28 -0700469# include the dependency files (.d/.P) generated by llvm-rs-cc.
470-include $(bc_dep_files:%.d=%.P)
Tim Murraya7aa8002012-10-29 16:06:00 -0700471
472LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
473
474rs_generated_cpps := $(addprefix \
475 $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \
476 $(notdir $(renderscript_sources)))))
477
Stephen Hines8ff92522014-06-06 12:51:47 -0700478# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Tim Murraya7aa8002012-10-29 16:06:00 -0700479$(rs_generated_cpps) : $(RenderScript_file_stamp)
Ying Wang81ab8332014-05-28 16:17:09 -0700480 @echo "Updated RS generated cpp file $@."
Ying Wange25b3982015-02-26 18:47:21 -0800481 $(hide) touch $@
Tim Murraya7aa8002012-10-29 16:06:00 -0700482
Ying Wang6ef65192014-01-15 16:02:16 -0800483my_c_includes += $(renderscript_intermediate)
484my_generated_sources += $(rs_generated_cpps)
Tim Murraya7aa8002012-10-29 16:06:00 -0700485
486endif
487
488
The Android Open Source Project88b60792009-03-03 19:28:42 -0800489###########################################################
490## Stuff source generated from one-off tools
491###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800492$(my_generated_sources): PRIVATE_MODULE := $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800493
Colin Crossd8262642014-01-24 23:17:21 -0800494my_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 -0800495
Colin Crossd8262642014-01-24 23:17:21 -0800496$(my_gen_sources_copy): $(intermediates)/% : $(generated_sources_dir)/% | $(ACP)
497 @echo "Copy: $@"
498 $(copy-file-to-target)
499
500my_generated_sources := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(my_generated_sources))
501
502ALL_GENERATED_SOURCES += $(my_generated_sources)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800503
504###########################################################
Ying Wangfaeb6932015-04-07 11:59:34 -0700505## Compile the .proto files to .cc (or .c) and then to .o
Ying Wanga5fc87a2010-11-02 18:43:16 -0700506###########################################################
Ying Wangb8e01852014-01-23 15:09:04 -0800507proto_sources := $(filter %.proto,$(my_src_files))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700508proto_generated_objects :=
509proto_generated_headers :=
510ifneq ($(proto_sources),)
Ying Wangfaeb6932015-04-07 11:59:34 -0700511proto_generated_sources_dir := $(generated_sources_dir)/proto
Ying Wangead89442014-02-25 11:18:40 -0800512proto_generated_obj_dir := $(intermediates)/proto
Ying Wangfaeb6932015-04-07 11:59:34 -0700513
514ifneq (,$(filter nanopb-c nanopb-c-enable_malloc, $(LOCAL_PROTOC_OPTIMIZE_TYPE)))
515my_proto_source_suffix := .c
516my_proto_c_includes := external/nanopb-c
517my_protoc_flags := --nanopb_out=$(proto_generated_sources_dir) \
518 --plugin=external/nanopb-c/generator/protoc-gen-nanopb
519else
520my_proto_source_suffix := .cc
521my_proto_c_includes := external/protobuf/src
522my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI
523my_protoc_flags := --cpp_out=$(proto_generated_sources_dir)
524endif
525my_proto_c_includes += $(proto_generated_sources_dir)
526
527proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
528proto_generated_sources := $(addprefix $(proto_generated_sources_dir)/, \
529 $(patsubst %.proto,%.pb$(my_proto_source_suffix),$(proto_sources_fullpath)))
530proto_generated_headers := $(patsubst %.pb$(my_proto_source_suffix),%.pb.h, $(proto_generated_sources))
Ying Wangead89442014-02-25 11:18:40 -0800531proto_generated_objects := $(addprefix $(proto_generated_obj_dir)/, \
532 $(patsubst %.proto,%.pb.o,$(proto_sources_fullpath)))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700533
Ying Wangead89442014-02-25 11:18:40 -0800534# Ensure the transform-proto-to-cc rule is only defined once in multilib build.
535ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined
Ying Wangfaeb6932015-04-07 11:59:34 -0700536$(proto_generated_sources): PRIVATE_PROTO_INCLUDES := $(TOP)
537$(proto_generated_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS) $(my_protoc_flags)
538$(proto_generated_sources): $(proto_generated_sources_dir)/%.pb$(my_proto_source_suffix): %.proto $(PROTOC)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700539 $(transform-proto-to-cc)
540
Stephen Hines8ff92522014-06-06 12:51:47 -0700541# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Ying Wangfaeb6932015-04-07 11:59:34 -0700542$(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 -0700543 @echo "Updated header file $@."
Ying Wange25b3982015-02-26 18:47:21 -0800544 $(hide) touch $@
Ying Wanga5fc87a2010-11-02 18:43:16 -0700545
Ying Wangead89442014-02-25 11:18:40 -0800546$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true
547endif # transform-proto-to-cc rule included only once
548
Ying Wang022a7b32012-06-13 11:38:10 -0700549$(proto_generated_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
550$(proto_generated_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wangfaeb6932015-04-07 11:59:34 -0700551$(proto_generated_objects): $(proto_generated_obj_dir)/%.o: $(proto_generated_sources_dir)/%$(my_proto_source_suffix) $(proto_generated_headers)
552ifeq ($(my_proto_source_suffix),.c)
553 $(transform-$(PRIVATE_HOST)c-to-o)
554else
Ying Wanga5fc87a2010-11-02 18:43:16 -0700555 $(transform-$(PRIVATE_HOST)cpp-to-o)
Ying Wangfaeb6932015-04-07 11:59:34 -0700556endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700557-include $(proto_generated_objects:%.o=%.P)
558
Ying Wangfaeb6932015-04-07 11:59:34 -0700559my_c_includes += $(my_proto_c_includes)
560# Auto-export the generated proto source dir.
561my_export_c_include_dirs += $(my_proto_c_includes)
562
563ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c-enable_malloc)
Ying Wang8a0d53e2015-04-08 09:54:34 -0700564 my_static_libraries += libprotobuf-c-nano-enable_malloc
Ying Wangfaeb6932015-04-07 11:59:34 -0700565else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c)
Ying Wang8a0d53e2015-04-08 09:54:34 -0700566 my_static_libraries += libprotobuf-c-nano
Ying Wangfaeb6932015-04-07 11:59:34 -0700567else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full)
Dan Albertc3031c72014-11-11 10:42:17 -0800568 ifdef LOCAL_SDK_VERSION
569 my_static_libraries += libprotobuf-cpp-full
570 else
571 my_shared_libraries += libprotobuf-cpp-full
572 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700573else
Dan Albertc3031c72014-11-11 10:42:17 -0800574 ifdef LOCAL_SDK_VERSION
575 my_static_libraries += libprotobuf-cpp-lite
576 else
577 my_shared_libraries += libprotobuf-cpp-lite
578 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700579endif
Ying Wangead89442014-02-25 11:18:40 -0800580endif # $(proto_sources) non-empty
Ying Wanga5fc87a2010-11-02 18:43:16 -0700581
Ying Wanga5fc87a2010-11-02 18:43:16 -0700582###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000583## YACC: Compile .y and .yy files to .cpp and the to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800584###########################################################
585
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000586y_yacc_sources := $(filter %.y,$(my_src_files))
587y_yacc_cpps := $(addprefix \
588 $(intermediates)/,$(y_yacc_sources:.y=$(LOCAL_CPP_EXTENSION)))
589
590yy_yacc_sources := $(filter %.yy,$(my_src_files))
591yy_yacc_cpps := $(addprefix \
592 $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION)))
593
594yacc_cpps := $(y_yacc_cpps) $(yy_yacc_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800595yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h)
596yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o)
597
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000598ifneq ($(strip $(y_yacc_cpps)),)
599$(y_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700600 $(TOPDIR)$(LOCAL_PATH)/%.y \
Dan Albert954b5bd2014-11-08 22:20:03 -0800601 $(lex_cpps) $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800602 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
603$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000604endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800605
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000606ifneq ($(strip $(yy_yacc_cpps)),)
607$(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
608 $(TOPDIR)$(LOCAL_PATH)/%.yy \
Dan Albert954b5bd2014-11-08 22:20:03 -0800609 $(lex_cpps) $(my_additional_dependencies)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000610 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
611$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
612endif
613
614ifneq ($(strip $(yacc_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800615$(yacc_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
616$(yacc_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
617$(yacc_objects): $(intermediates)/%.o: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
618 $(transform-$(PRIVATE_HOST)cpp-to-o)
619endif
620
621###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000622## LEX: Compile .l and .ll files to .cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800623###########################################################
624
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000625l_lex_sources := $(filter %.l,$(my_src_files))
626l_lex_cpps := $(addprefix \
627 $(intermediates)/,$(l_lex_sources:.l=$(LOCAL_CPP_EXTENSION)))
628
629ll_lex_sources := $(filter %.ll,$(my_src_files))
630ll_lex_cpps := $(addprefix \
631 $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION)))
632
633lex_cpps := $(l_lex_cpps) $(ll_lex_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800634lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o)
635
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000636ifneq ($(strip $(l_lex_cpps)),)
637$(l_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700638 $(TOPDIR)$(LOCAL_PATH)/%.l
The Android Open Source Project88b60792009-03-03 19:28:42 -0800639 $(transform-l-to-cpp)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000640endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800641
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000642ifneq ($(strip $(ll_lex_cpps)),)
643$(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
644 $(TOPDIR)$(LOCAL_PATH)/%.ll
645 $(transform-l-to-cpp)
646endif
647
648ifneq ($(strip $(lex_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800649$(lex_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
650$(lex_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
651$(lex_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700652 $(intermediates)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800653 $(my_additional_dependencies) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700654 $(yacc_headers)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800655 $(transform-$(PRIVATE_HOST)cpp-to-o)
656endif
657
658###########################################################
659## C++: Compile .cpp files to .o.
660###########################################################
661
Jeff Browne33ba4c2011-07-11 22:11:46 -0700662# we also do this on host modules, even though
The Android Open Source Project88b60792009-03-03 19:28:42 -0800663# it's not really arm, because there are files that are shared.
Ying Wangfb22a422015-03-10 18:03:11 -0700664cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(my_src_files)))
665dotdot_arm_sources := $(filter ../%,$(cpp_arm_sources))
666cpp_arm_sources := $(filter-out ../%,$(cpp_arm_sources))
667cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800668
Ying Wangfb22a422015-03-10 18:03:11 -0700669# For source files starting with ../, we remove all the ../ in the object file path,
670# to avoid object file escaping the intermediate directory.
671dotdot_arm_objects :=
672$(foreach s,$(dotdot_arm_sources),\
673 $(eval $(call compile-dotdot-cpp-file,$(s),\
674 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
675 dotdot_arm_objects)))
676
677dotdot_sources := $(filter ../%$(LOCAL_CPP_EXTENSION),$(my_src_files))
678dotdot_objects :=
679$(foreach s,$(dotdot_sources),\
680 $(eval $(call compile-dotdot-cpp-file,$(s),\
681 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
682 dotdot_objects)))
683
684cpp_normal_sources := $(filter-out ../%,$(filter %$(LOCAL_CPP_EXTENSION),$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800685cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o))
686
Ying Wangfb22a422015-03-10 18:03:11 -0700687$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
688$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
689$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
690$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800691
692cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects)
693
694ifneq ($(strip $(cpp_objects)),)
695$(cpp_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700696 $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800697 $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800698 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800699 $(transform-$(PRIVATE_HOST)cpp-to-o)
700-include $(cpp_objects:%.o=%.P)
701endif
702
Ying Wangfb22a422015-03-10 18:03:11 -0700703cpp_objects += $(dotdot_arm_objects) $(dotdot_objects)
704
The Android Open Source Project88b60792009-03-03 19:28:42 -0800705###########################################################
706## C++: Compile generated .cpp files to .o.
707###########################################################
708
Ying Wangec6d6262014-01-16 16:21:03 -0800709gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800710gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o)
711
712ifneq ($(strip $(gen_cpp_objects)),)
713# Compile all generated files as thumb.
714# TODO: support compiling certain generated files as arm.
715$(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
716$(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400717$(gen_cpp_objects): $(intermediates)/%.o: \
718 $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800719 $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800720 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800721 $(transform-$(PRIVATE_HOST)cpp-to-o)
722-include $(gen_cpp_objects:%.o=%.P)
723endif
724
725###########################################################
726## S: Compile generated .S and .s files to .o.
727###########################################################
728
Ying Wangec6d6262014-01-16 16:21:03 -0800729gen_S_sources := $(filter %.S,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800730gen_S_objects := $(gen_S_sources:%.S=%.o)
731
732ifneq ($(strip $(gen_S_sources)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400733$(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800734 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800735 $(transform-$(PRIVATE_HOST)s-to-o)
736-include $(gen_S_objects:%.o=%.P)
737endif
738
Ying Wangec6d6262014-01-16 16:21:03 -0800739gen_s_sources := $(filter %.s,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800740gen_s_objects := $(gen_s_sources:%.s=%.o)
741
742ifneq ($(strip $(gen_s_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400743$(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800744 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800745 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
746-include $(gen_s_objects:%.o=%.P)
747endif
748
749gen_asm_objects := $(gen_S_objects) $(gen_s_objects)
750
751###########################################################
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000752## o: Include generated .o files in output.
753###########################################################
754
Ying Wangec6d6262014-01-16 16:21:03 -0800755gen_o_objects := $(filter %.o,$(my_generated_sources))
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000756
757###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800758## C: Compile .c files to .o.
759###########################################################
760
Ying Wangfb22a422015-03-10 18:03:11 -0700761c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files)))
762dotdot_arm_sources := $(filter ../%,$(c_arm_sources))
763c_arm_sources := $(filter-out ../%,$(c_arm_sources))
764c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800765
Ying Wangfb22a422015-03-10 18:03:11 -0700766# For source files starting with ../, we remove all the ../ in the object file path,
767# to avoid object file escaping the intermediate directory.
768dotdot_arm_objects :=
769$(foreach s,$(dotdot_arm_sources),\
770 $(eval $(call compile-dotdot-c-file,$(s),\
771 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
772 dotdot_arm_objects)))
773
774dotdot_sources := $(filter ../%.c, $(my_src_files))
775dotdot_objects :=
776$(foreach s, $(dotdot_sources),\
777 $(eval $(call compile-dotdot-c-file,$(s),\
778 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
779 dotdot_objects)))
780
781c_normal_sources := $(filter-out ../%,$(filter %.c,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800782c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o))
783
Ying Wangfb22a422015-03-10 18:03:11 -0700784$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
785$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
786$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
787$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800788
789c_objects := $(c_arm_objects) $(c_normal_objects)
790
791ifneq ($(strip $(c_objects)),)
Ying Wangfaeb6932015-04-07 11:59:34 -0700792$(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800793 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800794 $(transform-$(PRIVATE_HOST)c-to-o)
795-include $(c_objects:%.o=%.P)
796endif
797
Ying Wangfb22a422015-03-10 18:03:11 -0700798c_objects += $(dotdot_arm_objects) $(dotdot_objects)
799
The Android Open Source Project88b60792009-03-03 19:28:42 -0800800###########################################################
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700801## C: Compile generated .c files to .o.
802###########################################################
803
Ying Wangec6d6262014-01-16 16:21:03 -0800804gen_c_sources := $(filter %.c,$(my_generated_sources))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700805gen_c_objects := $(gen_c_sources:%.c=%.o)
806
807ifneq ($(strip $(gen_c_objects)),)
808# Compile all generated files as thumb.
809# TODO: support compiling certain generated files as arm.
810$(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
811$(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wangfaeb6932015-04-07 11:59:34 -0700812$(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800813 $(my_additional_dependencies)
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700814 $(transform-$(PRIVATE_HOST)c-to-o)
815-include $(gen_c_objects:%.o=%.P)
816endif
817
818###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200819## ObjC: Compile .m files to .o
820###########################################################
821
Ying Wangb8e01852014-01-23 15:09:04 -0800822objc_sources := $(filter %.m,$(my_src_files))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200823objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o))
824
825ifneq ($(strip $(objc_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400826$(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800827 $(my_additional_dependencies)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200828 $(transform-$(PRIVATE_HOST)m-to-o)
829-include $(objc_objects:%.o=%.P)
830endif
831
832###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800833## AS: Compile .S files to .o.
834###########################################################
835
Ying Wangb8e01852014-01-23 15:09:04 -0800836asm_sources_S := $(filter %.S,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -0700837dotdot_sources := $(filter ../%,$(asm_sources_S))
838asm_sources_S := $(filter-out ../%,$(asm_sources_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800839asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o))
840
Ying Wangfb22a422015-03-10 18:03:11 -0700841dotdot_objects_S :=
842$(foreach s,$(dotdot_sources),\
843 $(eval $(call compile-dotdot-s-file,$(s),\
844 $(my_additional_dependencies),\
845 dotdot_objects_S)))
846
The Android Open Source Project88b60792009-03-03 19:28:42 -0800847ifneq ($(strip $(asm_objects_S)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400848$(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800849 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800850 $(transform-$(PRIVATE_HOST)s-to-o)
851-include $(asm_objects_S:%.o=%.P)
852endif
853
Ying Wangb8e01852014-01-23 15:09:04 -0800854asm_sources_s := $(filter %.s,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -0700855dotdot_sources := $(filter ../%,$(asm_sources_s))
856asm_sources_s := $(filter-out ../%,$(asm_sources_s))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800857asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o))
858
Ying Wangfb22a422015-03-10 18:03:11 -0700859dotdot_objects_s :=
860$(foreach s,$(dotdot_sources),\
861 $(eval $(call compile-dotdot-s-file-no-deps,$(s),\
862 $(my_additional_dependencies),\
863 dotdot_objects_s)))
864
The Android Open Source Project88b60792009-03-03 19:28:42 -0800865ifneq ($(strip $(asm_objects_s)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400866$(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800867 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800868 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800869endif
870
Ying Wangfb22a422015-03-10 18:03:11 -0700871asm_objects := $(dotdot_objects_S) $(dotdot_objects_s) $(asm_objects_S) $(asm_objects_s)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800872
873
Ying Wangfe1e5c32015-03-09 18:57:40 -0700874# .asm for x86/x86_64 needs to be compiled with yasm.
Ying Wang7b913ce2014-06-05 19:05:47 -0700875asm_sources_asm := $(filter %.asm,$(my_src_files))
876ifneq ($(strip $(asm_sources_asm)),)
877asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o))
878$(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \
Dan Albert954b5bd2014-11-08 22:20:03 -0800879 $(my_additional_dependencies)
Ying Wang7b913ce2014-06-05 19:05:47 -0700880 $(transform-asm-to-o)
881
882asm_objects += $(asm_objects_asm)
883endif
Ying Wang7b913ce2014-06-05 19:05:47 -0700884
Jeff Davidson680f0712015-01-08 18:25:30 -0800885
886##########################################################
887## Set up installed module dependency
888## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for
889## they may cusomize their install path with LOCAL_MODULE_PATH
890##########################################################
891# Get the list of INSTALLED libraries as module names.
892ifdef LOCAL_SDK_VERSION
893 installed_shared_library_module_names := \
894 $(my_shared_libraries)
895else
896 installed_shared_library_module_names := \
897 $(my_shared_libraries) $(my_system_shared_libraries)
898endif
899
900# The real dependency will be added after all Android.mks are loaded and the install paths
901# of the shared libraries are determined.
902ifdef LOCAL_INSTALLED_MODULE
903ifdef installed_shared_library_module_names
904$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
905 $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names)))
906endif
907endif
908
909
Ying Wang5f074802011-11-08 09:31:21 -0800910####################################################
911## Import includes
912####################################################
913import_includes := $(intermediates)/import_includes
914import_includes_deps := $(strip \
915 $(foreach l, $(installed_shared_library_module_names), \
Ying Wang6ef65192014-01-15 16:02:16 -0800916 $(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 -0800917 $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \
Ying Wang6ef65192014-01-15 16:02:16 -0800918 $(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 -0800919$(import_includes): PRIVATE_IMPORT_EXPORT_INCLUDES := $(import_includes_deps)
920$(import_includes) : $(LOCAL_MODULE_MAKEFILE) $(import_includes_deps)
Ying Wang5f074802011-11-08 09:31:21 -0800921 @echo Import includes file: $@
922 $(hide) mkdir -p $(dir $@) && rm -f $@
923ifdef import_includes_deps
Ying Wang14d02a32015-01-22 15:44:04 -0800924 $(hide) for f in $(PRIVATE_IMPORT_EXPORT_INCLUDES); do \
Ying Wang5f074802011-11-08 09:31:21 -0800925 cat $$f >> $@; \
926 done
927else
928 $(hide) touch $@
929endif
930
The Android Open Source Project88b60792009-03-03 19:28:42 -0800931###########################################################
932## Common object handling.
933###########################################################
934
935# some rules depend on asm_objects being first. If your code depends on
936# being first, it's reasonable to require it to be assembly
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100937normal_objects := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700938 $(asm_objects) \
939 $(cpp_objects) \
940 $(gen_cpp_objects) \
941 $(gen_asm_objects) \
942 $(c_objects) \
943 $(gen_c_objects) \
944 $(objc_objects) \
945 $(yacc_objects) \
946 $(lex_objects) \
947 $(proto_generated_objects) \
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100948 $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES))
949
950all_objects := $(normal_objects) $(gen_o_objects)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800951
Colin Cross2d206702014-02-13 13:41:52 -0800952my_c_includes += $(TOPDIR)$(LOCAL_PATH) $(intermediates) $(generated_sources_dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800953
Ying Wang848020f2012-08-14 10:13:16 -0700954ifndef LOCAL_SDK_VERSION
Ying Wang6ef65192014-01-15 16:02:16 -0800955 my_c_includes += $(JNI_H_INCLUDE)
Ying Wangbce4b752010-07-22 15:51:56 -0700956endif
957
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100958# all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES;
959# use normal_objects here to avoid creating circular dependencies. This assumes
960# that custom build rules which generate .o files don't consume other generated
961# sources as input (or if they do they take care of that dependency themselves).
Ying Wangec6d6262014-01-16 16:21:03 -0800962$(normal_objects) : | $(my_generated_sources)
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100963$(all_objects) : | $(import_includes)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800964ALL_C_CPP_ETC_OBJECTS += $(all_objects)
965
The Android Open Source Project88b60792009-03-03 19:28:42 -0800966
967###########################################################
968# Standard library handling.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800969###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800970
971###########################################################
972# The list of libraries that this module will link against are in
973# these variables. Each is a list of bare module names like "libc libm".
974#
975# LOCAL_SHARED_LIBRARIES
976# LOCAL_STATIC_LIBRARIES
977# LOCAL_WHOLE_STATIC_LIBRARIES
978#
979# We need to convert the bare names into the dependencies that
980# we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE.
981# LOCAL_BUILT_MODULE should depend on the BUILT versions of the
982# libraries, so that simply building this module doesn't force
983# an install of a library. Similarly, LOCAL_INSTALLED_MODULE
984# should depend on the INSTALLED versions of the libraries so
985# that they get installed when this module does.
986###########################################################
987# NOTE:
988# WHOLE_STATIC_LIBRARIES are libraries that are pulled into the
989# module without leaving anything out, which is useful for turning
990# a collection of .a files into a .so file. Linking against a
991# normal STATIC_LIBRARY will only pull in code/symbols that are
992# referenced by the module. (see gcc/ld's --whole-archive option)
993###########################################################
994
995# Get the list of BUILT libraries, which are under
996# various intermediates directories.
997so_suffix := $($(my_prefix)SHLIB_SUFFIX)
998a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX)
999
Ying Wang848020f2012-08-14 10:13:16 -07001000ifdef LOCAL_SDK_VERSION
The Android Open Source Project88b60792009-03-03 19:28:42 -08001001built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001002 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001003 $(addsuffix $(so_suffix), \
Ying Wang6ef65192014-01-15 16:02:16 -08001004 $(my_shared_libraries)))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001005
Ying Wangd8d37212014-03-21 16:17:04 -07001006# Add the NDK libraries to the built module dependency
Ying Wangcce4c972011-03-03 18:53:53 -08001007my_system_shared_libraries_fullpath := \
1008 $(my_ndk_stl_shared_lib_fullpath) \
Andrew Hsieh140761af02014-04-25 23:47:10 -07001009 $(addprefix $(my_ndk_sysroot_lib)/, \
Ying Wangd8d37212014-03-21 16:17:04 -07001010 $(addsuffix $(so_suffix), $(my_system_shared_libraries)))
Ying Wang1a081002010-07-13 14:55:47 -07001011
1012built_shared_libraries += $(my_system_shared_libraries_fullpath)
Ying Wang1a081002010-07-13 14:55:47 -07001013else
Ying Wang1a081002010-07-13 14:55:47 -07001014built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001015 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
Ying Wang1a081002010-07-13 14:55:47 -07001016 $(addsuffix $(so_suffix), \
Ying Wangd8d37212014-03-21 16:17:04 -07001017 $(installed_shared_library_module_names)))
Ying Wang1a081002010-07-13 14:55:47 -07001018endif
1019
The Android Open Source Project88b60792009-03-03 19:28:42 -08001020built_static_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001021 $(foreach lib,$(my_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001022 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -08001023 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 -08001024
Ying Wang848020f2012-08-14 10:13:16 -07001025ifdef LOCAL_SDK_VERSION
Ying Wangcce4c972011-03-03 18:53:53 -08001026built_static_libraries += $(my_ndk_stl_static_lib)
1027endif
1028
The Android Open Source Project88b60792009-03-03 19:28:42 -08001029built_whole_libraries := \
Colin Cross90353fe2014-02-04 14:53:25 -08001030 $(foreach lib,$(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001031 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -08001032 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 -08001033
The Android Open Source Project88b60792009-03-03 19:28:42 -08001034# We don't care about installed static libraries, since the
1035# libraries have already been linked into the module at that point.
1036# We do, however, care about the NOTICE files for any static
Steve Blockd14d3b42012-03-01 11:34:41 +00001037# libraries that we use. (see notice_files.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001038
1039installed_static_library_notice_file_targets := \
Colin Cross90353fe2014-02-04 14:53:25 -08001040 $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001041 NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib))
1042
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001043# Default is -fno-rtti.
Doug Kwane3c3c6d2011-06-07 10:55:48 -07001044ifeq ($(strip $(LOCAL_RTTI_FLAG)),)
1045LOCAL_RTTI_FLAG := -fno-rtti
1046endif
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001047
The Android Open Source Project88b60792009-03-03 19:28:42 -08001048###########################################################
1049# Rule-specific variable definitions
1050###########################################################
Logan Chiene6f65432013-12-10 19:07:41 +08001051
Ying Wang824344a2014-05-27 13:03:36 -07001052ifeq ($(my_clang),true)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001053my_cflags += $(LOCAL_CLANG_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -08001054my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS)
Dan Albertd2fa96d2014-11-28 14:00:12 -08001055my_cppflags += $(LOCAL_CLANG_CPPFLAGS)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001056my_asflags += $(LOCAL_CLANG_ASFLAGS)
1057my_ldflags += $(LOCAL_CLANG_LDFLAGS)
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -07001058my_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 -08001059my_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 -07001060my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix))
1061my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix))
1062my_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 -08001063my_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cflags))
1064my_cppflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cppflags))
1065my_asflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_asflags))
1066my_ldflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_ldflags))
Logan Chiene6f65432013-12-10 19:07:41 +08001067endif
1068
Ying Wang45d01432014-10-28 14:50:59 -07001069ifeq ($(my_fdo_build), true)
1070 my_cflags := $(patsubst -Os,-O2,$(my_cflags))
1071 fdo_incompatible_flags := -fno-early-inlining -finline-limit=%
1072 my_cflags := $(filter-out $(fdo_incompatible_flags),$(my_cflags))
Dehao Chen295a6d22014-09-19 10:18:12 -07001073endif
1074
The Android Open Source Project88b60792009-03-03 19:28:42 -08001075$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -08001076$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags)
Stephen Hines15680292014-11-26 00:53:46 -08001077$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(my_conlyflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001078$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags)
1079$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags)
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001080$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001081$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001082$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes)
Ying Wang5f074802011-11-08 09:31:21 -08001083$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes)
Ying Wang6ef65192014-01-15 16:02:16 -08001084$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags)
Dan Albertb05f2ca2014-09-12 14:46:57 -07001085$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs)
Ying Wangb8e01852014-01-23 15:09:04 -08001086$(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 -08001087
1088# this is really the way to get the files onto the command line instead
1089# of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work
1090$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries)
1091$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries)
1092$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries)
1093$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects)
1094
1095###########################################################
1096# Define library dependencies.
1097###########################################################
1098# all_libraries is used for the dependencies on LOCAL_BUILT_MODULE.
1099all_libraries := \
1100 $(built_shared_libraries) \
1101 $(built_static_libraries) \
1102 $(built_whole_libraries)
1103
The Android Open Source Project88b60792009-03-03 19:28:42 -08001104# Also depend on the notice files for any static libraries that
1105# are linked into this module. This will force them to be installed
1106# when this module is.
1107$(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets)
Ying Wang5f074802011-11-08 09:31:21 -08001108
1109###########################################################
1110# Export includes
1111###########################################################
1112export_includes := $(intermediates)/export_includes
Ying Wangfaeb6932015-04-07 11:59:34 -07001113$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(my_export_c_include_dirs)
Ying Wang49085952014-05-06 13:03:32 -07001114# Make sure .pb.h are already generated before any dependent source files get compiled.
Ying Wangfaeb6932015-04-07 11:59:34 -07001115$(export_includes) : $(LOCAL_MODULE_MAKEFILE) $(proto_generated_headers)
Ying Wang5f074802011-11-08 09:31:21 -08001116 @echo Export includes file: $< -- $@
1117 $(hide) mkdir -p $(dir $@) && rm -f $@
Ying Wangfaeb6932015-04-07 11:59:34 -07001118ifdef my_export_c_include_dirs
Ying Wang5f074802011-11-08 09:31:21 -08001119 $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
1120 echo "-I $$d" >> $@; \
1121 done
1122else
1123 $(hide) touch $@
1124endif
Ying Wang616e5962012-04-18 17:35:55 -07001125
1126# Make sure export_includes gets generated when you are running mm/mmm
1127$(LOCAL_BUILT_MODULE) : | $(export_includes)