blob: ba559354fb31d17663db5c11c42e570a3d50a427 [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)
Dan Albertd1600412015-06-10 16:33:43 -070043my_cflags_no_override := $(GLOBAL_CFLAGS_NO_OVERRIDE)
44my_cppflags_no_override := $(GLOBAL_CPPFLAGS_NO_OVERRIDE)
Dan Albertd3d894d2014-11-14 15:28:49 -080045my_ldflags := $(LOCAL_LDFLAGS)
46my_ldlibs := $(LOCAL_LDLIBS)
47my_asflags := $(LOCAL_ASFLAGS)
48my_cc := $(LOCAL_CC)
49my_cxx := $(LOCAL_CXX)
50my_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)
54
Dan Albertb58fb4a2014-11-14 17:15:00 -080055ifdef LOCAL_IS_HOST_MODULE
56my_allow_undefined_symbols := true
57else
58my_allow_undefined_symbols := $(strip $(LOCAL_ALLOW_UNDEFINED_SYMBOLS))
59endif
60
Andrew Hsieh140761af02014-04-25 23:47:10 -070061my_ndk_sysroot :=
62my_ndk_sysroot_include :=
63my_ndk_sysroot_lib :=
Ying Wang848020f2012-08-14 10:13:16 -070064ifdef LOCAL_SDK_VERSION
Ying Wangfe1bfe72012-08-14 11:08:03 -070065 ifdef LOCAL_NDK_VERSION
66 $(error $(LOCAL_PATH): LOCAL_NDK_VERSION is now retired.)
67 endif
Ying Wang1a081002010-07-13 14:55:47 -070068 ifdef LOCAL_IS_HOST_MODULE
Ian Rogers76a6dc32012-10-01 16:36:23 -070069 $(error $(LOCAL_PATH): LOCAL_SDK_VERSION cannot be used in host module)
Ying Wang1a081002010-07-13 14:55:47 -070070 endif
Ying Wang848020f2012-08-14 10:13:16 -070071 my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/sources
Andrew Hsieh140761af02014-04-25 23:47:10 -070072 my_ndk_sysroot := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
73 my_ndk_sysroot_include := $(my_ndk_sysroot)/usr/include
74 ifeq (x86_64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
75 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib64
Duane Sand1a074872014-11-08 15:25:18 -080076 else ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
77 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/libr6
Andrew Hsieh140761af02014-04-25 23:47:10 -070078 else
79 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib
80 endif
Ying Wangcce4c972011-03-03 18:53:53 -080081
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -070082 # The bionic linker now has support for packed relocations and gnu style
83 # hashes (which are much faster!), but shipping to older devices requires
84 # the old style hash and disabling packed relocations.
Dan Albertd3d894d2014-11-14 15:28:49 -080085 #ifeq ($(shell expr $(LOCAL_SDK_VERSION) >= FIRST_SUPPORTED_VERSION),0)
86 my_ldflags += -Wl,--hash-style=sysv
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -070087 LOCAL_PACK_MODULE_RELOCATIONS := false
Dan Albertd3d894d2014-11-14 15:28:49 -080088 #endif
89
Ying Wangcce4c972011-03-03 18:53:53 -080090 # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location.
91 # See ndk/docs/CPLUSPLUS-SUPPORT.html
92 my_ndk_stl_include_path :=
93 my_ndk_stl_shared_lib_fullpath :=
94 my_ndk_stl_shared_lib :=
95 my_ndk_stl_static_lib :=
Andrew Hsieh73d800e2014-03-04 17:11:52 +080096 my_ndk_stl_cppflags :=
Duane Sand1a074872014-11-08 15:25:18 -080097 my_cpu_variant := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)
98 ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
99 my_cpu_variant := mips32r6
100 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800101 LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800102 ifeq (,$(LOCAL_NDK_STL_VARIANT))
103 LOCAL_NDK_STL_VARIANT := system
104 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800105 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 -0700106 $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800107 endif
108 ifeq (system,$(LOCAL_NDK_STL_VARIANT))
109 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
110 # for "system" variant, the shared library exists in the system library and -lstdc++ is added by default.
111 else # LOCAL_NDK_STL_VARIANT is not system
112 ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
113 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
114 ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800115 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 -0800116 else
Duane Sand1a074872014-11-08 15:25:18 -0800117 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 -0800118 my_ndk_stl_shared_lib := -lstlport_shared
119 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800120 else # LOCAL_NDK_STL_VARIANT is not stlport_* either
121 ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
122 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include \
123 $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include \
124 $(my_ndk_source_root)/android/support/include
125 ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800126 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 +0800127 else
Duane Sand1a074872014-11-08 15:25:18 -0800128 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 +0800129 my_ndk_stl_shared_lib := -lc++_shared
130 endif
131 my_ndk_stl_cppflags := -std=c++11
Ying Wangcce4c972011-03-03 18:53:53 -0800132 else
133 # LOCAL_NDK_STL_VARIANT is gnustl_static
Duane Sand1a074872014-11-08 15:25:18 -0800134 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 -0700135 $(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 -0800136 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 -0800137 endif
138 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800139 endif
Ying Wang1a081002010-07-13 14:55:47 -0700140endif
141
Dan Albert95994de2014-08-07 18:29:11 -0700142# MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
143# all code is position independent, and then those warnings get promoted to
144# errors.
Ying Wang594a10a2014-08-07 20:08:04 -0700145ifndef USE_MINGW
Dan Albert4803ce22014-08-06 12:36:46 -0700146ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES)
147my_cflags += -fpie
148else
149my_cflags += -fPIC
150endif
Dan Albert95994de2014-08-07 18:29:11 -0700151endif
Dan Albert4803ce22014-08-06 12:36:46 -0700152
Ying Wang6feb6d52014-04-17 10:03:35 -0700153my_src_files += $(LOCAL_SRC_FILES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SRC_FILES_$(my_32_64_bit_suffix))
154my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix))
155my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix))
156my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix))
157my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix))
158my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix))
159my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix))
160my_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 -0800161
Dan Albertdb905e72014-08-18 11:14:38 -0700162my_clang := $(strip $(LOCAL_CLANG))
Ying Wang824344a2014-05-27 13:03:36 -0700163ifdef LOCAL_CLANG_$(my_32_64_bit_suffix)
Dan Albertdb905e72014-08-18 11:14:38 -0700164my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix)))
Ying Wang824344a2014-05-27 13:03:36 -0700165endif
166ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Dan Albertdb905e72014-08-18 11:14:38 -0700167my_clang := $(strip $(LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Ying Wang824344a2014-05-27 13:03:36 -0700168endif
169
Tim Murray92d79cb2014-04-04 14:38:29 -0700170# clang is enabled by default for host builds
171# enable it unless we've specifically disabled clang above
172ifdef LOCAL_IS_HOST_MODULE
Tim Murrayf3ca3d52014-07-24 15:20:18 -0700173 ifneq ($(HOST_OS),windows)
Tim Murray5ca1dc12014-07-24 14:42:53 -0700174 ifeq ($(my_clang),)
175 my_clang := true
176 endif
177 endif
Tim Murray92d79cb2014-04-04 14:38:29 -0700178endif
179
Tim Murray06659bc2014-08-13 11:53:07 -0700180# Add option to make clang the default for device build
181ifeq ($(USE_CLANG_PLATFORM_BUILD),true)
182 ifeq ($(my_clang),)
183 my_clang := true
184 endif
185endif
186
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800187# arch-specific static libraries go first so that generic ones can depend on them
Ying Wang6feb6d52014-04-17 10:03:35 -0700188my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries)
189my_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 -0800190
Ying Wang6feb6d52014-04-17 10:03:35 -0700191my_cflags := $(filter-out $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_UNSUPPORTED_CFLAGS),$(my_cflags))
Ying Wang6ef65192014-01-15 16:02:16 -0800192
Ying Wang75e8fcb2014-10-07 13:03:29 -0700193include $(BUILD_SYSTEM)/cxx_stl_setup.mk
Ying Wangd90de322014-05-23 16:42:37 -0700194
Ying Wang285045b2013-08-13 12:35:10 -0700195# Add static HAL libraries
196ifdef LOCAL_HAL_STATIC_LIBRARIES
197$(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \
198 $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\
Ying Wang6ef65192014-01-15 16:02:16 -0800199 $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\
200 $(eval my_static_libraries += $(lib).default)))
Ying Wang285045b2013-08-13 12:35:10 -0700201b_lib :=
202endif
203
Dan Albert4ae5d4b2014-10-31 16:23:08 -0700204include $(BUILD_SYSTEM)/config_sanitizers.mk
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400205
Ying Wangba8b3772014-03-10 18:23:08 -0700206ifeq ($(strip $($(LOCAL_2ND_ARCH_VAR_PREFIX)WITHOUT_$(my_prefix)CLANG)),true)
Ying Wang824344a2014-05-27 13:03:36 -0700207 my_clang :=
Mike Lockwood051a1742013-06-14 10:52:50 -0700208endif
209
Shih-wei Liaoc8dfc162013-01-27 01:45:59 -0800210# Add in libcompiler_rt for all regular device builds
Dan Albert30a9c352015-04-09 14:41:06 -0700211ifeq (,$(LOCAL_SDK_VERSION)$(WITHOUT_LIBCOMPILER_RT))
Ying Wang6ef65192014-01-15 16:02:16 -0800212 my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES)
Stephen Hinesc72f3962012-06-11 14:53:34 -0700213endif
214
Jing Yu2dcc8062009-09-21 16:31:50 -0700215####################################################
216## Add FDO flags if FDO is turned on and supported
Dehao Chen295a6d22014-09-19 10:18:12 -0700217## Please note that we will do option filtering during FDO build.
218## i.e. Os->O2, remove -fno-early-inline and -finline-limit.
219##################################################################
Ying Wangd7914632014-10-28 14:50:59 -0700220my_fdo_build :=
221ifneq ($(filter true always, $(LOCAL_FDO_SUPPORT)),)
222 ifeq ($(BUILD_FDO_INSTRUMENT),true)
223 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_CFLAGS)
224 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_LDFLAGS)
225 my_fdo_build := true
226 else ifneq ($(filter true,$(BUILD_FDO_OPTIMIZE))$(filter always,$(LOCAL_FDO_SUPPORT)),)
227 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_OPTIMIZE_CFLAGS)
228 my_fdo_build := true
synergydev4a605762013-08-05 02:44:37 -0700229 endif
Jing Yu2dcc8062009-09-21 16:31:50 -0700230endif
231
The Android Open Source Project88b60792009-03-03 19:28:42 -0800232###########################################################
Jim Huang20d1ba62010-10-14 16:15:56 +0800233## Explicitly declare assembly-only __ASSEMBLY__ macro for
234## assembly source
235###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800236my_asflags += -D__ASSEMBLY__
Jim Huang20d1ba62010-10-14 16:15:56 +0800237
Ying Wangd8d37212014-03-21 16:17:04 -0700238
Jim Huang20d1ba62010-10-14 16:15:56 +0800239###########################################################
Ying Wang1a081002010-07-13 14:55:47 -0700240## Define PRIVATE_ variables from global vars
241###########################################################
Ying Wang7fff9a12014-01-09 14:39:41 -0800242ifndef LOCAL_IS_HOST_MODULE
Ying Wang848020f2012-08-14 10:13:16 -0700243ifdef LOCAL_SDK_VERSION
Ying Wang1a081002010-07-13 14:55:47 -0700244my_target_project_includes :=
Andrew Hsieh140761af02014-04-25 23:47:10 -0700245my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_sysroot_include)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800246my_target_global_cppflags := $(my_ndk_stl_cppflags)
Ying Wang1a081002010-07-13 14:55:47 -0700247else
Ying Wang6ef65192014-01-15 16:02:16 -0800248my_target_project_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES)
249my_target_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_C_INCLUDES)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800250my_target_global_cppflags :=
Ying Wangf4723fa2013-08-15 11:01:10 -0700251endif # LOCAL_SDK_VERSION
252
Ying Wang824344a2014-05-27 13:03:36 -0700253ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800254my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800255my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800256my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CPPFLAGS)
Ying Wang1f982832014-02-06 18:08:44 -0800257my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_LDFLAGS)
Ying Wangda4bf422012-08-16 16:45:01 -0700258else
Ying Wang6ef65192014-01-15 16:02:16 -0800259my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800260my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800261my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800262my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700263endif # my_clang
Ying Wangda4bf422012-08-16 16:45:01 -0700264
Ying Wang1a081002010-07-13 14:55:47 -0700265$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes)
Evgeniy Stepanova7095e92012-03-30 12:18:52 +0400266$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes)
Ying Wang1a081002010-07-13 14:55:47 -0700267$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800268$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CONLYFLAGS := $(my_target_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800269$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags)
270$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags)
271
Ying Wang7fff9a12014-01-09 14:39:41 -0800272else # LOCAL_IS_HOST_MODULE
273
Ying Wang824344a2014-05-27 13:03:36 -0700274ifeq ($(my_clang),true)
Ying Wang6feb6d52014-04-17 10:03:35 -0700275my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800276my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CONLYFLAGS)
Ying Wang6feb6d52014-04-17 10:03:35 -0700277my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CPPFLAGS)
278my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_LDFLAGS)
Stephen Hinesf0089662014-09-25 22:35:16 -0700279my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Logan Chiene6f65432013-12-10 19:07:41 +0800280else
Ying Wang6feb6d52014-04-17 10:03:35 -0700281my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800282my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CONLYFLAGS)
Ying Wang6feb6d52014-04-17 10:03:35 -0700283my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS)
284my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LDFLAGS)
285my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Ying Wang824344a2014-05-27 13:03:36 -0700286endif # my_clang
Logan Chiene6f65432013-12-10 19:07:41 +0800287
288$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_C_INCLUDES := $(my_host_c_includes)
289$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800290$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CONLYFLAGS := $(my_host_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800291$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags)
292$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags)
293endif # LOCAL_IS_HOST_MODULE
Ying Wang1a081002010-07-13 14:55:47 -0700294
Dan Albert43e128a2015-01-23 16:12:57 -0800295# To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and
296# build with NATIVE_COVERAGE=true in your enviornment. Note that the build
297# system is not sensitive to changes to NATIVE_COVERAGE, so you should do a
298# clean build of your module after toggling it.
299ifeq ($(NATIVE_COVERAGE),true)
300 ifeq ($(my_native_coverage),true)
Dan Albert343ed672015-01-25 16:20:57 -0800301 # Note that clang coverage doesn't play nicely with acov out of the box.
302 # Clang apparently generates .gcno files that aren't compatible with
303 # gcov-4.8. This can be solved by installing gcc-4.6 and invoking lcov
304 # with `--gcov-tool /usr/bin/gcov-4.6`.
305 #
306 # http://stackoverflow.com/questions/17758126/clang-code-coverage-invalid-output
Dan Albert2c03e042015-01-24 15:14:35 -0800307 my_cflags += --coverage -O0
Dan Albert343ed672015-01-25 16:20:57 -0800308 my_ldflags += --coverage
Dan Albert43e128a2015-01-23 16:12:57 -0800309 endif
310else
311 my_native_coverage := false
312endif
313
Ying Wang1a081002010-07-13 14:55:47 -0700314###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800315## Define PRIVATE_ variables used by multiple module types
316###########################################################
317$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700318 $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800319
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800320ifeq ($(strip $(WITH_SYNTAX_CHECK)),)
321 LOCAL_NO_SYNTAX_CHECK := true
322endif
323
Andrew Hsieh906cb782013-09-10 17:37:14 +0800324ifeq ($(strip $(WITH_STATIC_ANALYZER)),)
325 LOCAL_NO_STATIC_ANALYZER := true
326endif
327
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800328ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
329 my_syntax_arch := host
330else
Ying Wang6ef65192014-01-15 16:02:16 -0800331 my_syntax_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800332endif
333
Ying Wang6ef65192014-01-15 16:02:16 -0800334ifeq ($(strip $(my_cc)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700335 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800336 my_cc := $(CLANG)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400337 else
Ying Wang6ef65192014-01-15 16:02:16 -0800338 my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400339 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800340endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800341ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800342 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800343else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800344ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800345 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-syntax $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800346endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800347endif
Ying Wang6ef65192014-01-15 16:02:16 -0800348$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800349
Ying Wang6ef65192014-01-15 16:02:16 -0800350ifeq ($(strip $(my_cxx)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700351 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800352 my_cxx := $(CLANG_CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400353 else
Ying Wang6ef65192014-01-15 16:02:16 -0800354 my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400355 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800356endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800357ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800358 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-analyzer $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800359else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800360ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800361 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-syntax $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800362endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800363endif
Ying Wang6ef65192014-01-15 16:02:16 -0800364$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(my_cxx)
Dan Albertb6bb71b2014-08-05 14:44:41 -0700365$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800366
367# TODO: support a mix of standard extensions so that this isn't necessary
368LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION))
369ifeq ($(LOCAL_CPP_EXTENSION),)
370 LOCAL_CPP_EXTENSION := .cpp
371endif
372$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPP_EXTENSION := $(LOCAL_CPP_EXTENSION)
373
374# Certain modules like libdl have to have symbols resolved at runtime and blow
375# up if --no-undefined is passed to the linker.
376ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),)
Dan Albertb58fb4a2014-11-14 17:15:00 -0800377ifeq ($(my_allow_undefined_symbols),)
Ying Wang6ef65192014-01-15 16:02:16 -0800378 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)NO_UNDEFINED_LDFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800379endif
380endif
381
Ying Wangfcdabd42011-04-25 14:22:41 -0700382ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES))
383$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true
384else
385$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES :=
386endif
387
The Android Open Source Project88b60792009-03-03 19:28:42 -0800388###########################################################
389## Define arm-vs-thumb-mode flags.
390###########################################################
391LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE))
Colin Cross6e087a32014-01-22 17:36:05 -0800392ifeq ($(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800393arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm)
394normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb)
395
Dave Bort95282482009-04-23 18:44:55 -0700396# Read the values from something like TARGET_arm_CFLAGS or
397# TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't
398# actually used (although they are usually empty).
Ying Wang6ef65192014-01-15 16:02:16 -0800399arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS)
400normal_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(normal_objects_mode)_CFLAGS)
Dan Albertdb905e72014-08-18 11:14:38 -0700401ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800402arm_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(arm_objects_cflags))
403normal_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(normal_objects_cflags))
Evgeniy Stepanovf50f4c52012-04-05 11:44:37 +0400404endif
405
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800406else
407arm_objects_mode :=
408normal_objects_mode :=
409arm_objects_cflags :=
410normal_objects_cflags :=
411endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800412
413###########################################################
414## Define per-module debugging flags. Users can turn on
415## debugging for a particular module by setting DEBUG_MODULE_ModuleName
416## to a non-empty value in their environment or buildspec.mk,
417## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the
418## debug flags that they want to use.
419###########################################################
420ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE))
421 debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS)
422else
423 debug_cflags :=
424endif
425
Tim Murraya7aa8002012-10-29 16:06:00 -0700426####################################################
427## Compile RenderScript with reflected C++
428####################################################
429
Ying Wangb8e01852014-01-23 15:09:04 -0800430renderscript_sources := $(filter %.rs %.fs,$(my_src_files))
Tim Murraya7aa8002012-10-29 16:06:00 -0700431
432ifneq (,$(renderscript_sources))
433
434renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
435RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp
436renderscript_intermediate := $(intermediates)/renderscript
437
438ifeq ($(LOCAL_RENDERSCRIPT_CC),)
439LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
440endif
441
442# Turn on all warnings and warnings as errors for RS compiles.
443# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
444renderscript_flags := -Wall -Werror
445renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
Ying Wangacaada12014-09-10 16:11:41 -0700446# -m32 or -m64
447renderscript_flags += -m$(my_32_64_bit_suffix)
Tim Murrayf0020c62014-09-10 15:11:01 -0700448
Ying Wang6ef65192014-01-15 16:02:16 -0800449renderscript_includes := \
Tim Murraya7aa8002012-10-29 16:06:00 -0700450 $(TOPDIR)external/clang/lib/Headers \
451 $(TOPDIR)frameworks/rs/scriptc \
452 $(LOCAL_RENDERSCRIPT_INCLUDES)
453
454ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
Ying Wang6ef65192014-01-15 16:02:16 -0800455renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
Tim Murraya7aa8002012-10-29 16:06:00 -0700456endif
457
Ying Wangb9319562015-04-03 16:15:28 -0700458bc_dep_files := $(addprefix $(renderscript_intermediate)/, \
459 $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
460
Ying Wang6ef65192014-01-15 16:02:16 -0800461$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes)
Tim Murraya7aa8002012-10-29 16:06:00 -0700462$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
463$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
464$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
465$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate)
Ying Wangb9319562015-04-03 16:15:28 -0700466$(RenderScript_file_stamp): PRIVATE_DEP_FILES := $(bc_dep_files)
Tim Murraya7aa8002012-10-29 16:06:00 -0700467$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
468 $(transform-renderscripts-to-cpp-and-bc)
469
Ying Wangb9319562015-04-03 16:15:28 -0700470# include the dependency files (.d/.P) generated by llvm-rs-cc.
471-include $(bc_dep_files:%.d=%.P)
Tim Murraya7aa8002012-10-29 16:06:00 -0700472
473LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
474
475rs_generated_cpps := $(addprefix \
476 $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \
477 $(notdir $(renderscript_sources)))))
478
Stephen Hines8ff92522014-06-06 12:51:47 -0700479# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Tim Murraya7aa8002012-10-29 16:06:00 -0700480$(rs_generated_cpps) : $(RenderScript_file_stamp)
Ying Wang81ab8332014-05-28 16:17:09 -0700481 @echo "Updated RS generated cpp file $@."
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 Wanga5fc87a2010-11-02 18:43:16 -0700505## Compile the .proto files to .cc and then to .o
506###########################################################
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),)
511proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
Ying Wangead89442014-02-25 11:18:40 -0800512proto_generated_cc_sources_dir := $(generated_sources_dir)/proto
Ying Wanga5fc87a2010-11-02 18:43:16 -0700513proto_generated_cc_sources := $(addprefix $(proto_generated_cc_sources_dir)/, \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700514 $(patsubst %.proto,%.pb.cc,$(proto_sources_fullpath)))
Ying Wangead89442014-02-25 11:18:40 -0800515proto_generated_headers := $(patsubst %.pb.cc,%.pb.h, $(proto_generated_cc_sources))
516proto_generated_obj_dir := $(intermediates)/proto
517proto_generated_objects := $(addprefix $(proto_generated_obj_dir)/, \
518 $(patsubst %.proto,%.pb.o,$(proto_sources_fullpath)))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700519
Ying Wang49085952014-05-06 13:03:32 -0700520# Auto-export the generated proto source dir.
521LOCAL_EXPORT_C_INCLUDE_DIRS += $(proto_generated_cc_sources_dir)
522
Ying Wangead89442014-02-25 11:18:40 -0800523# Ensure the transform-proto-to-cc rule is only defined once in multilib build.
524ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined
Ying Wanga5fc87a2010-11-02 18:43:16 -0700525$(proto_generated_cc_sources): PRIVATE_PROTO_INCLUDES := $(TOP)
526$(proto_generated_cc_sources): PRIVATE_PROTO_CC_OUTPUT_DIR := $(proto_generated_cc_sources_dir)
Ying Wang33c0d952010-11-05 11:30:58 -0700527$(proto_generated_cc_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700528$(proto_generated_cc_sources): $(proto_generated_cc_sources_dir)/%.pb.cc: %.proto $(PROTOC)
529 $(transform-proto-to-cc)
530
Stephen Hines8ff92522014-06-06 12:51:47 -0700531# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Ying Wanga5fc87a2010-11-02 18:43:16 -0700532$(proto_generated_headers): $(proto_generated_cc_sources_dir)/%.pb.h: $(proto_generated_cc_sources_dir)/%.pb.cc
Ying Wang81ab8332014-05-28 16:17:09 -0700533 @echo "Updated header file $@."
Ying Wanga5fc87a2010-11-02 18:43:16 -0700534
Ying Wangead89442014-02-25 11:18:40 -0800535$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true
536endif # transform-proto-to-cc rule included only once
537
Ying Wang022a7b32012-06-13 11:38:10 -0700538$(proto_generated_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
539$(proto_generated_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wangead89442014-02-25 11:18:40 -0800540$(proto_generated_objects): $(proto_generated_obj_dir)/%.o: $(proto_generated_cc_sources_dir)/%.cc $(proto_generated_headers)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700541 $(transform-$(PRIVATE_HOST)cpp-to-o)
542-include $(proto_generated_objects:%.o=%.P)
543
Ying Wang6ef65192014-01-15 16:02:16 -0800544my_c_includes += external/protobuf/src $(proto_generated_cc_sources_dir)
545my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI
Ying Wanga5fc87a2010-11-02 18:43:16 -0700546ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full)
Dan Albertc3031c72014-11-11 10:42:17 -0800547 ifdef LOCAL_SDK_VERSION
548 my_static_libraries += libprotobuf-cpp-full
549 else
550 my_shared_libraries += libprotobuf-cpp-full
551 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700552else
Dan Albertc3031c72014-11-11 10:42:17 -0800553 ifdef LOCAL_SDK_VERSION
554 my_static_libraries += libprotobuf-cpp-lite
555 else
556 my_shared_libraries += libprotobuf-cpp-lite
557 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700558endif
Ying Wangead89442014-02-25 11:18:40 -0800559endif # $(proto_sources) non-empty
Ying Wanga5fc87a2010-11-02 18:43:16 -0700560
561
562###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000563## YACC: Compile .y and .yy files to .cpp and the to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800564###########################################################
565
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000566y_yacc_sources := $(filter %.y,$(my_src_files))
567y_yacc_cpps := $(addprefix \
568 $(intermediates)/,$(y_yacc_sources:.y=$(LOCAL_CPP_EXTENSION)))
569
570yy_yacc_sources := $(filter %.yy,$(my_src_files))
571yy_yacc_cpps := $(addprefix \
572 $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION)))
573
574yacc_cpps := $(y_yacc_cpps) $(yy_yacc_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800575yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h)
576yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o)
577
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000578ifneq ($(strip $(y_yacc_cpps)),)
579$(y_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700580 $(TOPDIR)$(LOCAL_PATH)/%.y \
Dan Albert954b5bd2014-11-08 22:20:03 -0800581 $(lex_cpps) $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800582 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
583$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000584endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800585
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000586ifneq ($(strip $(yy_yacc_cpps)),)
587$(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
588 $(TOPDIR)$(LOCAL_PATH)/%.yy \
Dan Albert954b5bd2014-11-08 22:20:03 -0800589 $(lex_cpps) $(my_additional_dependencies)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000590 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
591$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
592endif
593
594ifneq ($(strip $(yacc_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800595$(yacc_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
596$(yacc_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
597$(yacc_objects): $(intermediates)/%.o: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
598 $(transform-$(PRIVATE_HOST)cpp-to-o)
599endif
600
601###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000602## LEX: Compile .l and .ll files to .cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800603###########################################################
604
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000605l_lex_sources := $(filter %.l,$(my_src_files))
606l_lex_cpps := $(addprefix \
607 $(intermediates)/,$(l_lex_sources:.l=$(LOCAL_CPP_EXTENSION)))
608
609ll_lex_sources := $(filter %.ll,$(my_src_files))
610ll_lex_cpps := $(addprefix \
611 $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION)))
612
613lex_cpps := $(l_lex_cpps) $(ll_lex_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800614lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o)
615
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000616ifneq ($(strip $(l_lex_cpps)),)
617$(l_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700618 $(TOPDIR)$(LOCAL_PATH)/%.l
The Android Open Source Project88b60792009-03-03 19:28:42 -0800619 $(transform-l-to-cpp)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000620endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800621
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000622ifneq ($(strip $(ll_lex_cpps)),)
623$(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
624 $(TOPDIR)$(LOCAL_PATH)/%.ll
625 $(transform-l-to-cpp)
626endif
627
628ifneq ($(strip $(lex_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800629$(lex_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
630$(lex_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
631$(lex_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700632 $(intermediates)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800633 $(my_additional_dependencies) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700634 $(yacc_headers)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800635 $(transform-$(PRIVATE_HOST)cpp-to-o)
636endif
637
638###########################################################
639## C++: Compile .cpp files to .o.
640###########################################################
641
Jeff Browne33ba4c2011-07-11 22:11:46 -0700642# we also do this on host modules, even though
The Android Open Source Project88b60792009-03-03 19:28:42 -0800643# it's not really arm, because there are files that are shared.
Ying Wangfb22a422015-03-10 18:03:11 -0700644cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(my_src_files)))
645dotdot_arm_sources := $(filter ../%,$(cpp_arm_sources))
646cpp_arm_sources := $(filter-out ../%,$(cpp_arm_sources))
647cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800648
Ying Wangfb22a422015-03-10 18:03:11 -0700649# For source files starting with ../, we remove all the ../ in the object file path,
650# to avoid object file escaping the intermediate directory.
651dotdot_arm_objects :=
652$(foreach s,$(dotdot_arm_sources),\
653 $(eval $(call compile-dotdot-cpp-file,$(s),\
654 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
655 dotdot_arm_objects)))
656
657dotdot_sources := $(filter ../%$(LOCAL_CPP_EXTENSION),$(my_src_files))
658dotdot_objects :=
659$(foreach s,$(dotdot_sources),\
660 $(eval $(call compile-dotdot-cpp-file,$(s),\
661 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
662 dotdot_objects)))
663
664cpp_normal_sources := $(filter-out ../%,$(filter %$(LOCAL_CPP_EXTENSION),$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800665cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o))
666
Ying Wangfb22a422015-03-10 18:03:11 -0700667$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
668$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
669$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
670$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800671
672cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects)
673
674ifneq ($(strip $(cpp_objects)),)
675$(cpp_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700676 $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800677 $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800678 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800679 $(transform-$(PRIVATE_HOST)cpp-to-o)
680-include $(cpp_objects:%.o=%.P)
681endif
682
Ying Wangfb22a422015-03-10 18:03:11 -0700683cpp_objects += $(dotdot_arm_objects) $(dotdot_objects)
684
The Android Open Source Project88b60792009-03-03 19:28:42 -0800685###########################################################
686## C++: Compile generated .cpp files to .o.
687###########################################################
688
Ying Wangec6d6262014-01-16 16:21:03 -0800689gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800690gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o)
691
692ifneq ($(strip $(gen_cpp_objects)),)
693# Compile all generated files as thumb.
694# TODO: support compiling certain generated files as arm.
695$(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
696$(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400697$(gen_cpp_objects): $(intermediates)/%.o: \
698 $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800699 $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800700 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800701 $(transform-$(PRIVATE_HOST)cpp-to-o)
702-include $(gen_cpp_objects:%.o=%.P)
703endif
704
705###########################################################
706## S: Compile generated .S and .s files to .o.
707###########################################################
708
Ying Wangec6d6262014-01-16 16:21:03 -0800709gen_S_sources := $(filter %.S,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800710gen_S_objects := $(gen_S_sources:%.S=%.o)
711
712ifneq ($(strip $(gen_S_sources)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400713$(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800714 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800715 $(transform-$(PRIVATE_HOST)s-to-o)
716-include $(gen_S_objects:%.o=%.P)
717endif
718
Ying Wangec6d6262014-01-16 16:21:03 -0800719gen_s_sources := $(filter %.s,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800720gen_s_objects := $(gen_s_sources:%.s=%.o)
721
722ifneq ($(strip $(gen_s_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400723$(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800724 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800725 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
726-include $(gen_s_objects:%.o=%.P)
727endif
728
729gen_asm_objects := $(gen_S_objects) $(gen_s_objects)
730
731###########################################################
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000732## o: Include generated .o files in output.
733###########################################################
734
Ying Wangec6d6262014-01-16 16:21:03 -0800735gen_o_objects := $(filter %.o,$(my_generated_sources))
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000736
737###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800738## C: Compile .c files to .o.
739###########################################################
740
Ying Wangfb22a422015-03-10 18:03:11 -0700741c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files)))
742dotdot_arm_sources := $(filter ../%,$(c_arm_sources))
743c_arm_sources := $(filter-out ../%,$(c_arm_sources))
744c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800745
Ying Wangfb22a422015-03-10 18:03:11 -0700746# For source files starting with ../, we remove all the ../ in the object file path,
747# to avoid object file escaping the intermediate directory.
748dotdot_arm_objects :=
749$(foreach s,$(dotdot_arm_sources),\
750 $(eval $(call compile-dotdot-c-file,$(s),\
751 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
752 dotdot_arm_objects)))
753
754dotdot_sources := $(filter ../%.c, $(my_src_files))
755dotdot_objects :=
756$(foreach s, $(dotdot_sources),\
757 $(eval $(call compile-dotdot-c-file,$(s),\
758 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
759 dotdot_objects)))
760
761c_normal_sources := $(filter-out ../%,$(filter %.c,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800762c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o))
763
Ying Wangfb22a422015-03-10 18:03:11 -0700764$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
765$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
766$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
767$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800768
769c_objects := $(c_arm_objects) $(c_normal_objects)
770
771ifneq ($(strip $(c_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400772$(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800773 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800774 $(transform-$(PRIVATE_HOST)c-to-o)
775-include $(c_objects:%.o=%.P)
776endif
777
Ying Wangfb22a422015-03-10 18:03:11 -0700778c_objects += $(dotdot_arm_objects) $(dotdot_objects)
779
The Android Open Source Project88b60792009-03-03 19:28:42 -0800780###########################################################
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700781## C: Compile generated .c files to .o.
782###########################################################
783
Ying Wangec6d6262014-01-16 16:21:03 -0800784gen_c_sources := $(filter %.c,$(my_generated_sources))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700785gen_c_objects := $(gen_c_sources:%.c=%.o)
786
787ifneq ($(strip $(gen_c_objects)),)
788# Compile all generated files as thumb.
789# TODO: support compiling certain generated files as arm.
790$(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
791$(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400792$(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800793 $(my_additional_dependencies)
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700794 $(transform-$(PRIVATE_HOST)c-to-o)
795-include $(gen_c_objects:%.o=%.P)
796endif
797
798###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200799## ObjC: Compile .m files to .o
800###########################################################
801
Ying Wangb8e01852014-01-23 15:09:04 -0800802objc_sources := $(filter %.m,$(my_src_files))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200803objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o))
804
805ifneq ($(strip $(objc_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400806$(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800807 $(my_additional_dependencies)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200808 $(transform-$(PRIVATE_HOST)m-to-o)
809-include $(objc_objects:%.o=%.P)
810endif
811
812###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800813## AS: Compile .S files to .o.
814###########################################################
815
Ying Wangb8e01852014-01-23 15:09:04 -0800816asm_sources_S := $(filter %.S,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -0700817dotdot_sources := $(filter ../%,$(asm_sources_S))
818asm_sources_S := $(filter-out ../%,$(asm_sources_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800819asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o))
820
Ying Wangfb22a422015-03-10 18:03:11 -0700821dotdot_objects_S :=
822$(foreach s,$(dotdot_sources),\
823 $(eval $(call compile-dotdot-s-file,$(s),\
824 $(my_additional_dependencies),\
825 dotdot_objects_S)))
826
The Android Open Source Project88b60792009-03-03 19:28:42 -0800827ifneq ($(strip $(asm_objects_S)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400828$(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800829 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800830 $(transform-$(PRIVATE_HOST)s-to-o)
831-include $(asm_objects_S:%.o=%.P)
832endif
833
Ying Wangb8e01852014-01-23 15:09:04 -0800834asm_sources_s := $(filter %.s,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -0700835dotdot_sources := $(filter ../%,$(asm_sources_s))
836asm_sources_s := $(filter-out ../%,$(asm_sources_s))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800837asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o))
838
Ying Wangfb22a422015-03-10 18:03:11 -0700839dotdot_objects_s :=
840$(foreach s,$(dotdot_sources),\
841 $(eval $(call compile-dotdot-s-file-no-deps,$(s),\
842 $(my_additional_dependencies),\
843 dotdot_objects_s)))
844
The Android Open Source Project88b60792009-03-03 19:28:42 -0800845ifneq ($(strip $(asm_objects_s)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400846$(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800847 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800848 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800849endif
850
Ying Wangfb22a422015-03-10 18:03:11 -0700851asm_objects := $(dotdot_objects_S) $(dotdot_objects_s) $(asm_objects_S) $(asm_objects_s)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800852
853
Ying Wangfe1e5c32015-03-09 18:57:40 -0700854# .asm for x86/x86_64 needs to be compiled with yasm.
Ying Wang7b913ce2014-06-05 19:05:47 -0700855asm_sources_asm := $(filter %.asm,$(my_src_files))
856ifneq ($(strip $(asm_sources_asm)),)
857asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o))
858$(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \
Dan Albert954b5bd2014-11-08 22:20:03 -0800859 $(my_additional_dependencies)
Ying Wang7b913ce2014-06-05 19:05:47 -0700860 $(transform-asm-to-o)
861
862asm_objects += $(asm_objects_asm)
863endif
Ying Wang7b913ce2014-06-05 19:05:47 -0700864
Jeff Davidson680f0712015-01-08 18:25:30 -0800865
866##########################################################
867## Set up installed module dependency
868## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for
869## they may cusomize their install path with LOCAL_MODULE_PATH
870##########################################################
871# Get the list of INSTALLED libraries as module names.
872ifdef LOCAL_SDK_VERSION
873 installed_shared_library_module_names := \
874 $(my_shared_libraries)
875else
876 installed_shared_library_module_names := \
877 $(my_shared_libraries) $(my_system_shared_libraries)
878endif
879
880# The real dependency will be added after all Android.mks are loaded and the install paths
881# of the shared libraries are determined.
882ifdef LOCAL_INSTALLED_MODULE
883ifdef installed_shared_library_module_names
884$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
885 $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names)))
886endif
887endif
888
889
Ying Wang5f074802011-11-08 09:31:21 -0800890####################################################
891## Import includes
892####################################################
893import_includes := $(intermediates)/import_includes
894import_includes_deps := $(strip \
895 $(foreach l, $(installed_shared_library_module_names), \
Ying Wang6ef65192014-01-15 16:02:16 -0800896 $(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 -0800897 $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \
Ying Wang6ef65192014-01-15 16:02:16 -0800898 $(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 -0800899$(import_includes): PRIVATE_IMPORT_EXPORT_INCLUDES := $(import_includes_deps)
900$(import_includes) : $(LOCAL_MODULE_MAKEFILE) $(import_includes_deps)
Ying Wang5f074802011-11-08 09:31:21 -0800901 @echo Import includes file: $@
902 $(hide) mkdir -p $(dir $@) && rm -f $@
903ifdef import_includes_deps
Ying Wang14d02a32015-01-22 15:44:04 -0800904 $(hide) for f in $(PRIVATE_IMPORT_EXPORT_INCLUDES); do \
Ying Wang5f074802011-11-08 09:31:21 -0800905 cat $$f >> $@; \
906 done
907else
908 $(hide) touch $@
909endif
910
The Android Open Source Project88b60792009-03-03 19:28:42 -0800911###########################################################
912## Common object handling.
913###########################################################
914
915# some rules depend on asm_objects being first. If your code depends on
916# being first, it's reasonable to require it to be assembly
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100917normal_objects := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700918 $(asm_objects) \
919 $(cpp_objects) \
920 $(gen_cpp_objects) \
921 $(gen_asm_objects) \
922 $(c_objects) \
923 $(gen_c_objects) \
924 $(objc_objects) \
925 $(yacc_objects) \
926 $(lex_objects) \
927 $(proto_generated_objects) \
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100928 $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES))
929
930all_objects := $(normal_objects) $(gen_o_objects)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800931
Colin Cross2d206702014-02-13 13:41:52 -0800932my_c_includes += $(TOPDIR)$(LOCAL_PATH) $(intermediates) $(generated_sources_dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800933
Ying Wang848020f2012-08-14 10:13:16 -0700934ifndef LOCAL_SDK_VERSION
Ying Wang6ef65192014-01-15 16:02:16 -0800935 my_c_includes += $(JNI_H_INCLUDE)
Ying Wangbce4b752010-07-22 15:51:56 -0700936endif
937
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100938# all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES;
939# use normal_objects here to avoid creating circular dependencies. This assumes
940# that custom build rules which generate .o files don't consume other generated
941# sources as input (or if they do they take care of that dependency themselves).
Ying Wangec6d6262014-01-16 16:21:03 -0800942$(normal_objects) : | $(my_generated_sources)
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100943$(all_objects) : | $(import_includes)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800944ALL_C_CPP_ETC_OBJECTS += $(all_objects)
945
The Android Open Source Project88b60792009-03-03 19:28:42 -0800946
947###########################################################
948# Standard library handling.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800949###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800950
951###########################################################
952# The list of libraries that this module will link against are in
953# these variables. Each is a list of bare module names like "libc libm".
954#
955# LOCAL_SHARED_LIBRARIES
956# LOCAL_STATIC_LIBRARIES
957# LOCAL_WHOLE_STATIC_LIBRARIES
958#
959# We need to convert the bare names into the dependencies that
960# we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE.
961# LOCAL_BUILT_MODULE should depend on the BUILT versions of the
962# libraries, so that simply building this module doesn't force
963# an install of a library. Similarly, LOCAL_INSTALLED_MODULE
964# should depend on the INSTALLED versions of the libraries so
965# that they get installed when this module does.
966###########################################################
967# NOTE:
968# WHOLE_STATIC_LIBRARIES are libraries that are pulled into the
969# module without leaving anything out, which is useful for turning
970# a collection of .a files into a .so file. Linking against a
971# normal STATIC_LIBRARY will only pull in code/symbols that are
972# referenced by the module. (see gcc/ld's --whole-archive option)
973###########################################################
974
975# Get the list of BUILT libraries, which are under
976# various intermediates directories.
977so_suffix := $($(my_prefix)SHLIB_SUFFIX)
978a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX)
979
Ying Wang848020f2012-08-14 10:13:16 -0700980ifdef LOCAL_SDK_VERSION
The Android Open Source Project88b60792009-03-03 19:28:42 -0800981built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -0800982 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800983 $(addsuffix $(so_suffix), \
Ying Wang6ef65192014-01-15 16:02:16 -0800984 $(my_shared_libraries)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800985
Ying Wangd8d37212014-03-21 16:17:04 -0700986# Add the NDK libraries to the built module dependency
Ying Wangcce4c972011-03-03 18:53:53 -0800987my_system_shared_libraries_fullpath := \
988 $(my_ndk_stl_shared_lib_fullpath) \
Andrew Hsieh140761af02014-04-25 23:47:10 -0700989 $(addprefix $(my_ndk_sysroot_lib)/, \
Ying Wangd8d37212014-03-21 16:17:04 -0700990 $(addsuffix $(so_suffix), $(my_system_shared_libraries)))
Ying Wang1a081002010-07-13 14:55:47 -0700991
992built_shared_libraries += $(my_system_shared_libraries_fullpath)
Ying Wang1a081002010-07-13 14:55:47 -0700993else
Ying Wang1a081002010-07-13 14:55:47 -0700994built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -0800995 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
Ying Wang1a081002010-07-13 14:55:47 -0700996 $(addsuffix $(so_suffix), \
Ying Wangd8d37212014-03-21 16:17:04 -0700997 $(installed_shared_library_module_names)))
Ying Wang1a081002010-07-13 14:55:47 -0700998endif
999
The Android Open Source Project88b60792009-03-03 19:28:42 -08001000built_static_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001001 $(foreach lib,$(my_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001002 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -08001003 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 -08001004
Ying Wang848020f2012-08-14 10:13:16 -07001005ifdef LOCAL_SDK_VERSION
Ying Wangcce4c972011-03-03 18:53:53 -08001006built_static_libraries += $(my_ndk_stl_static_lib)
1007endif
1008
The Android Open Source Project88b60792009-03-03 19:28:42 -08001009built_whole_libraries := \
Colin Cross90353fe2014-02-04 14:53:25 -08001010 $(foreach lib,$(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001011 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -08001012 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 -08001013
The Android Open Source Project88b60792009-03-03 19:28:42 -08001014# We don't care about installed static libraries, since the
1015# libraries have already been linked into the module at that point.
1016# We do, however, care about the NOTICE files for any static
Steve Blockd14d3b42012-03-01 11:34:41 +00001017# libraries that we use. (see notice_files.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001018
1019installed_static_library_notice_file_targets := \
Colin Cross90353fe2014-02-04 14:53:25 -08001020 $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001021 NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib))
1022
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001023# Default is -fno-rtti.
Doug Kwane3c3c6d2011-06-07 10:55:48 -07001024ifeq ($(strip $(LOCAL_RTTI_FLAG)),)
1025LOCAL_RTTI_FLAG := -fno-rtti
1026endif
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001027
The Android Open Source Project88b60792009-03-03 19:28:42 -08001028###########################################################
1029# Rule-specific variable definitions
1030###########################################################
Logan Chiene6f65432013-12-10 19:07:41 +08001031
Ying Wang824344a2014-05-27 13:03:36 -07001032ifeq ($(my_clang),true)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001033my_cflags += $(LOCAL_CLANG_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -08001034my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS)
Dan Albertd2fa96d2014-11-28 14:00:12 -08001035my_cppflags += $(LOCAL_CLANG_CPPFLAGS)
Dan Albertd1600412015-06-10 16:33:43 -07001036my_cflags_no_override += $(GLOBAL_CLANG_CFLAGS_NO_OVERRIDE)
1037my_cppflags_no_override += $(GLOBAL_CLANG_CPPFLAGS_NO_OVERRIDE)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001038my_asflags += $(LOCAL_CLANG_ASFLAGS)
1039my_ldflags += $(LOCAL_CLANG_LDFLAGS)
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -07001040my_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 -08001041my_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 -07001042my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix))
1043my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix))
1044my_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 -08001045my_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cflags))
1046my_cppflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cppflags))
1047my_asflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_asflags))
1048my_ldflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_ldflags))
Logan Chiene6f65432013-12-10 19:07:41 +08001049endif
1050
Ying Wangd7914632014-10-28 14:50:59 -07001051ifeq ($(my_fdo_build), true)
1052 my_cflags := $(patsubst -Os,-O2,$(my_cflags))
1053 fdo_incompatible_flags := -fno-early-inlining -finline-limit=%
1054 my_cflags := $(filter-out $(fdo_incompatible_flags),$(my_cflags))
Dehao Chen295a6d22014-09-19 10:18:12 -07001055endif
1056
The Android Open Source Project88b60792009-03-03 19:28:42 -08001057$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -08001058$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags)
Stephen Hines15680292014-11-26 00:53:46 -08001059$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(my_conlyflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001060$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags)
1061$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags)
Dan Albertd1600412015-06-10 16:33:43 -07001062$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS_NO_OVERRIDE := $(my_cflags_no_override)
1063$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS_NO_OVERRIDE := $(my_cppflags_no_override)
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001064$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001065$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001066$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes)
Ying Wang5f074802011-11-08 09:31:21 -08001067$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes)
Ying Wang6ef65192014-01-15 16:02:16 -08001068$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags)
Dan Albertb05f2ca2014-09-12 14:46:57 -07001069$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs)
Ying Wangb8e01852014-01-23 15:09:04 -08001070$(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 -08001071
1072# this is really the way to get the files onto the command line instead
1073# of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work
1074$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries)
1075$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries)
1076$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries)
1077$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects)
1078
1079###########################################################
1080# Define library dependencies.
1081###########################################################
1082# all_libraries is used for the dependencies on LOCAL_BUILT_MODULE.
1083all_libraries := \
1084 $(built_shared_libraries) \
1085 $(built_static_libraries) \
1086 $(built_whole_libraries)
1087
The Android Open Source Project88b60792009-03-03 19:28:42 -08001088# Also depend on the notice files for any static libraries that
1089# are linked into this module. This will force them to be installed
1090# when this module is.
1091$(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets)
Ying Wang5f074802011-11-08 09:31:21 -08001092
1093###########################################################
1094# Export includes
1095###########################################################
1096export_includes := $(intermediates)/export_includes
1097$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(LOCAL_EXPORT_C_INCLUDE_DIRS)
Ying Wang49085952014-05-06 13:03:32 -07001098# Make sure .pb.h are already generated before any dependent source files get compiled.
1099$(export_includes) : $(LOCAL_MODULE_MAKEFILE) $(proto_generated_headers)
Ying Wang5f074802011-11-08 09:31:21 -08001100 @echo Export includes file: $< -- $@
1101 $(hide) mkdir -p $(dir $@) && rm -f $@
1102ifdef LOCAL_EXPORT_C_INCLUDE_DIRS
1103 $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
1104 echo "-I $$d" >> $@; \
1105 done
1106else
1107 $(hide) touch $@
1108endif
Ying Wang616e5962012-04-18 17:35:55 -07001109
1110# Make sure export_includes gets generated when you are running mm/mmm
1111$(LOCAL_BUILT_MODULE) : | $(export_includes)