blob: d3d050e68eb77005f1bc4dfd3a20e322c84eea3a [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)
52
Dan Albertb58fb4a2014-11-14 17:15:00 -080053ifdef LOCAL_IS_HOST_MODULE
54my_allow_undefined_symbols := true
55else
56my_allow_undefined_symbols := $(strip $(LOCAL_ALLOW_UNDEFINED_SYMBOLS))
57endif
58
Andrew Hsieh140761af02014-04-25 23:47:10 -070059my_ndk_sysroot :=
60my_ndk_sysroot_include :=
61my_ndk_sysroot_lib :=
Ying Wang848020f2012-08-14 10:13:16 -070062ifdef LOCAL_SDK_VERSION
Ying Wangfe1bfe72012-08-14 11:08:03 -070063 ifdef LOCAL_NDK_VERSION
64 $(error $(LOCAL_PATH): LOCAL_NDK_VERSION is now retired.)
65 endif
Ying Wang1a081002010-07-13 14:55:47 -070066 ifdef LOCAL_IS_HOST_MODULE
Ian Rogers76a6dc32012-10-01 16:36:23 -070067 $(error $(LOCAL_PATH): LOCAL_SDK_VERSION cannot be used in host module)
Ying Wang1a081002010-07-13 14:55:47 -070068 endif
Ying Wang848020f2012-08-14 10:13:16 -070069 my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/sources
Andrew Hsieh140761af02014-04-25 23:47:10 -070070 my_ndk_sysroot := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
71 my_ndk_sysroot_include := $(my_ndk_sysroot)/usr/include
72 ifeq (x86_64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
73 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib64
Duane Sand1a074872014-11-08 15:25:18 -080074 else ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
75 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/libr6
Andrew Hsieh140761af02014-04-25 23:47:10 -070076 else
77 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib
78 endif
Ying Wangcce4c972011-03-03 18:53:53 -080079
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -070080 # The bionic linker now has support for packed relocations and gnu style
81 # hashes (which are much faster!), but shipping to older devices requires
82 # the old style hash and disabling packed relocations.
Dan Albertd3d894d2014-11-14 15:28:49 -080083 #ifeq ($(shell expr $(LOCAL_SDK_VERSION) >= FIRST_SUPPORTED_VERSION),0)
84 my_ldflags += -Wl,--hash-style=sysv
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -070085 LOCAL_PACK_MODULE_RELOCATIONS := false
Dan Albertd3d894d2014-11-14 15:28:49 -080086 #endif
87
Ying Wangcce4c972011-03-03 18:53:53 -080088 # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location.
89 # See ndk/docs/CPLUSPLUS-SUPPORT.html
90 my_ndk_stl_include_path :=
91 my_ndk_stl_shared_lib_fullpath :=
92 my_ndk_stl_shared_lib :=
93 my_ndk_stl_static_lib :=
Andrew Hsieh73d800e2014-03-04 17:11:52 +080094 my_ndk_stl_cppflags :=
Duane Sand1a074872014-11-08 15:25:18 -080095 my_cpu_variant := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)
96 ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
97 my_cpu_variant := mips32r6
98 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +080099 LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800100 ifeq (,$(LOCAL_NDK_STL_VARIANT))
101 LOCAL_NDK_STL_VARIANT := system
102 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800103 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 -0700104 $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800105 endif
106 ifeq (system,$(LOCAL_NDK_STL_VARIANT))
107 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
108 # for "system" variant, the shared library exists in the system library and -lstdc++ is added by default.
109 else # LOCAL_NDK_STL_VARIANT is not system
110 ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
111 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
112 ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800113 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 -0800114 else
Duane Sand1a074872014-11-08 15:25:18 -0800115 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 -0800116 my_ndk_stl_shared_lib := -lstlport_shared
117 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800118 else # LOCAL_NDK_STL_VARIANT is not stlport_* either
119 ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
120 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include \
121 $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include \
122 $(my_ndk_source_root)/android/support/include
123 ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800124 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 +0800125 else
Duane Sand1a074872014-11-08 15:25:18 -0800126 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 +0800127 my_ndk_stl_shared_lib := -lc++_shared
128 endif
129 my_ndk_stl_cppflags := -std=c++11
Ying Wangcce4c972011-03-03 18:53:53 -0800130 else
131 # LOCAL_NDK_STL_VARIANT is gnustl_static
Duane Sand1a074872014-11-08 15:25:18 -0800132 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 -0700133 $(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 -0800134 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 -0800135 endif
136 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800137 endif
Ying Wang1a081002010-07-13 14:55:47 -0700138endif
139
Dan Albert95994de2014-08-07 18:29:11 -0700140# MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
141# all code is position independent, and then those warnings get promoted to
142# errors.
Ying Wang594a10a2014-08-07 20:08:04 -0700143ifndef USE_MINGW
Dan Albert4803ce22014-08-06 12:36:46 -0700144ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES)
145my_cflags += -fpie
146else
147my_cflags += -fPIC
148endif
Dan Albert95994de2014-08-07 18:29:11 -0700149endif
Dan Albert4803ce22014-08-06 12:36:46 -0700150
Ying Wang6feb6d52014-04-17 10:03:35 -0700151my_src_files += $(LOCAL_SRC_FILES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SRC_FILES_$(my_32_64_bit_suffix))
152my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix))
153my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix))
154my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix))
155my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix))
156my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix))
157my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix))
158my_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 -0800159
Dan Albertdb905e72014-08-18 11:14:38 -0700160my_clang := $(strip $(LOCAL_CLANG))
Ying Wang824344a2014-05-27 13:03:36 -0700161ifdef LOCAL_CLANG_$(my_32_64_bit_suffix)
Dan Albertdb905e72014-08-18 11:14:38 -0700162my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix)))
Ying Wang824344a2014-05-27 13:03:36 -0700163endif
164ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Dan Albertdb905e72014-08-18 11:14:38 -0700165my_clang := $(strip $(LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Ying Wang824344a2014-05-27 13:03:36 -0700166endif
167
Tim Murray92d79cb2014-04-04 14:38:29 -0700168# clang is enabled by default for host builds
169# enable it unless we've specifically disabled clang above
170ifdef LOCAL_IS_HOST_MODULE
Tim Murrayf3ca3d52014-07-24 15:20:18 -0700171 ifneq ($(HOST_OS),windows)
Tim Murray5ca1dc12014-07-24 14:42:53 -0700172 ifeq ($(my_clang),)
173 my_clang := true
174 endif
175 endif
Tim Murray92d79cb2014-04-04 14:38:29 -0700176endif
177
Tim Murray06659bc2014-08-13 11:53:07 -0700178# Add option to make clang the default for device build
179ifeq ($(USE_CLANG_PLATFORM_BUILD),true)
180 ifeq ($(my_clang),)
181 my_clang := true
182 endif
183endif
184
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800185# arch-specific static libraries go first so that generic ones can depend on them
Ying Wang6feb6d52014-04-17 10:03:35 -0700186my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries)
187my_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 -0800188
Ying Wang6feb6d52014-04-17 10:03:35 -0700189my_cflags := $(filter-out $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_UNSUPPORTED_CFLAGS),$(my_cflags))
Ying Wang6ef65192014-01-15 16:02:16 -0800190
Ying Wang75e8fcb2014-10-07 13:03:29 -0700191include $(BUILD_SYSTEM)/cxx_stl_setup.mk
Ying Wangd90de322014-05-23 16:42:37 -0700192
Ying Wang285045b2013-08-13 12:35:10 -0700193# Add static HAL libraries
194ifdef LOCAL_HAL_STATIC_LIBRARIES
195$(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \
196 $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\
Ying Wang6ef65192014-01-15 16:02:16 -0800197 $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\
198 $(eval my_static_libraries += $(lib).default)))
Ying Wang285045b2013-08-13 12:35:10 -0700199b_lib :=
200endif
201
Dan Albert4ae5d4b2014-10-31 16:23:08 -0700202include $(BUILD_SYSTEM)/config_sanitizers.mk
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400203
Ying Wangba8b3772014-03-10 18:23:08 -0700204ifeq ($(strip $($(LOCAL_2ND_ARCH_VAR_PREFIX)WITHOUT_$(my_prefix)CLANG)),true)
Ying Wang824344a2014-05-27 13:03:36 -0700205 my_clang :=
Mike Lockwood051a1742013-06-14 10:52:50 -0700206endif
207
Shih-wei Liaoc8dfc162013-01-27 01:45:59 -0800208# Add in libcompiler_rt for all regular device builds
Dan Albert30a9c352015-04-09 14:41:06 -0700209ifeq (,$(LOCAL_SDK_VERSION)$(WITHOUT_LIBCOMPILER_RT))
Ying Wang6ef65192014-01-15 16:02:16 -0800210 my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES)
Stephen Hinesc72f3962012-06-11 14:53:34 -0700211endif
212
Jing Yu2dcc8062009-09-21 16:31:50 -0700213####################################################
214## Add FDO flags if FDO is turned on and supported
Dehao Chen295a6d22014-09-19 10:18:12 -0700215## Please note that we will do option filtering during FDO build.
216## i.e. Os->O2, remove -fno-early-inline and -finline-limit.
217##################################################################
Ying Wangd7914632014-10-28 14:50:59 -0700218my_fdo_build :=
219ifneq ($(filter true always, $(LOCAL_FDO_SUPPORT)),)
220 ifeq ($(BUILD_FDO_INSTRUMENT),true)
221 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_CFLAGS)
222 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_LDFLAGS)
223 my_fdo_build := true
224 else ifneq ($(filter true,$(BUILD_FDO_OPTIMIZE))$(filter always,$(LOCAL_FDO_SUPPORT)),)
225 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_OPTIMIZE_CFLAGS)
226 my_fdo_build := true
synergydev4a605762013-08-05 02:44:37 -0700227 endif
Jing Yu2dcc8062009-09-21 16:31:50 -0700228endif
229
The Android Open Source Project88b60792009-03-03 19:28:42 -0800230###########################################################
Jim Huang20d1ba62010-10-14 16:15:56 +0800231## Explicitly declare assembly-only __ASSEMBLY__ macro for
232## assembly source
233###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800234my_asflags += -D__ASSEMBLY__
Jim Huang20d1ba62010-10-14 16:15:56 +0800235
Ying Wangd8d37212014-03-21 16:17:04 -0700236
Jim Huang20d1ba62010-10-14 16:15:56 +0800237###########################################################
Ying Wang1a081002010-07-13 14:55:47 -0700238## Define PRIVATE_ variables from global vars
239###########################################################
Ying Wang7fff9a12014-01-09 14:39:41 -0800240ifndef LOCAL_IS_HOST_MODULE
Ying Wang848020f2012-08-14 10:13:16 -0700241ifdef LOCAL_SDK_VERSION
Ying Wang1a081002010-07-13 14:55:47 -0700242my_target_project_includes :=
Andrew Hsieh140761af02014-04-25 23:47:10 -0700243my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_sysroot_include)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800244my_target_global_cppflags := $(my_ndk_stl_cppflags)
Ying Wang1a081002010-07-13 14:55:47 -0700245else
Ying Wang6ef65192014-01-15 16:02:16 -0800246my_target_project_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES)
247my_target_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_C_INCLUDES)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800248my_target_global_cppflags :=
Ying Wangf4723fa2013-08-15 11:01:10 -0700249endif # LOCAL_SDK_VERSION
250
Ying Wang824344a2014-05-27 13:03:36 -0700251ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800252my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800253my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800254my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CPPFLAGS)
Ying Wang1f982832014-02-06 18:08:44 -0800255my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_LDFLAGS)
Ying Wangda4bf422012-08-16 16:45:01 -0700256else
Ying Wang6ef65192014-01-15 16:02:16 -0800257my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800258my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800259my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800260my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700261endif # my_clang
Ying Wangda4bf422012-08-16 16:45:01 -0700262
Ying Wang1a081002010-07-13 14:55:47 -0700263$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes)
Evgeniy Stepanova7095e92012-03-30 12:18:52 +0400264$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes)
Ying Wang1a081002010-07-13 14:55:47 -0700265$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800266$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CONLYFLAGS := $(my_target_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800267$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags)
268$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags)
269
Ying Wang7fff9a12014-01-09 14:39:41 -0800270else # LOCAL_IS_HOST_MODULE
271
Ying Wang824344a2014-05-27 13:03:36 -0700272ifeq ($(my_clang),true)
Ying Wang6feb6d52014-04-17 10:03:35 -0700273my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800274my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CONLYFLAGS)
Ying Wang6feb6d52014-04-17 10:03:35 -0700275my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CPPFLAGS)
276my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_LDFLAGS)
Stephen Hinesf0089662014-09-25 22:35:16 -0700277my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Logan Chiene6f65432013-12-10 19:07:41 +0800278else
Ying Wang6feb6d52014-04-17 10:03:35 -0700279my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800280my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CONLYFLAGS)
Ying Wang6feb6d52014-04-17 10:03:35 -0700281my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS)
282my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LDFLAGS)
283my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Ying Wang824344a2014-05-27 13:03:36 -0700284endif # my_clang
Logan Chiene6f65432013-12-10 19:07:41 +0800285
286$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_C_INCLUDES := $(my_host_c_includes)
287$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800288$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CONLYFLAGS := $(my_host_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800289$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags)
290$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags)
291endif # LOCAL_IS_HOST_MODULE
Ying Wang1a081002010-07-13 14:55:47 -0700292
Dan Albert43e128a2015-01-23 16:12:57 -0800293# To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and
294# build with NATIVE_COVERAGE=true in your enviornment. Note that the build
295# system is not sensitive to changes to NATIVE_COVERAGE, so you should do a
296# clean build of your module after toggling it.
297ifeq ($(NATIVE_COVERAGE),true)
298 ifeq ($(my_native_coverage),true)
Dan Albert343ed672015-01-25 16:20:57 -0800299 # Note that clang coverage doesn't play nicely with acov out of the box.
300 # Clang apparently generates .gcno files that aren't compatible with
301 # gcov-4.8. This can be solved by installing gcc-4.6 and invoking lcov
302 # with `--gcov-tool /usr/bin/gcov-4.6`.
303 #
304 # http://stackoverflow.com/questions/17758126/clang-code-coverage-invalid-output
Dan Albert2c03e042015-01-24 15:14:35 -0800305 my_cflags += --coverage -O0
Dan Albert343ed672015-01-25 16:20:57 -0800306 my_ldflags += --coverage
Dan Albert43e128a2015-01-23 16:12:57 -0800307 endif
308else
309 my_native_coverage := false
310endif
311
Ying Wang1a081002010-07-13 14:55:47 -0700312###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800313## Define PRIVATE_ variables used by multiple module types
314###########################################################
315$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700316 $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800317
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800318ifeq ($(strip $(WITH_SYNTAX_CHECK)),)
319 LOCAL_NO_SYNTAX_CHECK := true
320endif
321
Andrew Hsieh906cb782013-09-10 17:37:14 +0800322ifeq ($(strip $(WITH_STATIC_ANALYZER)),)
323 LOCAL_NO_STATIC_ANALYZER := true
324endif
325
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800326ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
327 my_syntax_arch := host
328else
Ying Wang6ef65192014-01-15 16:02:16 -0800329 my_syntax_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800330endif
331
Ying Wang6ef65192014-01-15 16:02:16 -0800332ifeq ($(strip $(my_cc)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700333 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800334 my_cc := $(CLANG)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400335 else
Ying Wang6ef65192014-01-15 16:02:16 -0800336 my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400337 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800338endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800339ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800340 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800341else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800342ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800343 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-syntax $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800344endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800345endif
Ying Wang6ef65192014-01-15 16:02:16 -0800346$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800347
Ying Wang6ef65192014-01-15 16:02:16 -0800348ifeq ($(strip $(my_cxx)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700349 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800350 my_cxx := $(CLANG_CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400351 else
Ying Wang6ef65192014-01-15 16:02:16 -0800352 my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400353 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800354endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800355ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800356 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-analyzer $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800357else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800358ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800359 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-syntax $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800360endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800361endif
Ying Wang6ef65192014-01-15 16:02:16 -0800362$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(my_cxx)
Dan Albertb6bb71b2014-08-05 14:44:41 -0700363$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800364
365# TODO: support a mix of standard extensions so that this isn't necessary
366LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION))
367ifeq ($(LOCAL_CPP_EXTENSION),)
368 LOCAL_CPP_EXTENSION := .cpp
369endif
370$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPP_EXTENSION := $(LOCAL_CPP_EXTENSION)
371
372# Certain modules like libdl have to have symbols resolved at runtime and blow
373# up if --no-undefined is passed to the linker.
374ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),)
Dan Albertb58fb4a2014-11-14 17:15:00 -0800375ifeq ($(my_allow_undefined_symbols),)
Ying Wang6ef65192014-01-15 16:02:16 -0800376 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)NO_UNDEFINED_LDFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800377endif
378endif
379
Ying Wangfcdabd42011-04-25 14:22:41 -0700380ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES))
381$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true
382else
383$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES :=
384endif
385
The Android Open Source Project88b60792009-03-03 19:28:42 -0800386###########################################################
387## Define arm-vs-thumb-mode flags.
388###########################################################
389LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE))
Colin Cross6e087a32014-01-22 17:36:05 -0800390ifeq ($(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800391arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm)
392normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb)
393
Dave Bort95282482009-04-23 18:44:55 -0700394# Read the values from something like TARGET_arm_CFLAGS or
395# TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't
396# actually used (although they are usually empty).
Ying Wang6ef65192014-01-15 16:02:16 -0800397arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS)
398normal_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(normal_objects_mode)_CFLAGS)
Dan Albertdb905e72014-08-18 11:14:38 -0700399ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800400arm_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(arm_objects_cflags))
401normal_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(normal_objects_cflags))
Evgeniy Stepanovf50f4c52012-04-05 11:44:37 +0400402endif
403
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800404else
405arm_objects_mode :=
406normal_objects_mode :=
407arm_objects_cflags :=
408normal_objects_cflags :=
409endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800410
411###########################################################
412## Define per-module debugging flags. Users can turn on
413## debugging for a particular module by setting DEBUG_MODULE_ModuleName
414## to a non-empty value in their environment or buildspec.mk,
415## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the
416## debug flags that they want to use.
417###########################################################
418ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE))
419 debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS)
420else
421 debug_cflags :=
422endif
423
Tim Murraya7aa8002012-10-29 16:06:00 -0700424####################################################
425## Compile RenderScript with reflected C++
426####################################################
427
Ying Wangb8e01852014-01-23 15:09:04 -0800428renderscript_sources := $(filter %.rs %.fs,$(my_src_files))
Tim Murraya7aa8002012-10-29 16:06:00 -0700429
430ifneq (,$(renderscript_sources))
431
432renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
433RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp
434renderscript_intermediate := $(intermediates)/renderscript
435
436ifeq ($(LOCAL_RENDERSCRIPT_CC),)
437LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
438endif
439
440# Turn on all warnings and warnings as errors for RS compiles.
441# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
442renderscript_flags := -Wall -Werror
443renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
Ying Wangacaada12014-09-10 16:11:41 -0700444# -m32 or -m64
445renderscript_flags += -m$(my_32_64_bit_suffix)
Tim Murrayf0020c62014-09-10 15:11:01 -0700446
Ying Wang6ef65192014-01-15 16:02:16 -0800447renderscript_includes := \
Tim Murraya7aa8002012-10-29 16:06:00 -0700448 $(TOPDIR)external/clang/lib/Headers \
449 $(TOPDIR)frameworks/rs/scriptc \
450 $(LOCAL_RENDERSCRIPT_INCLUDES)
451
452ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
Ying Wang6ef65192014-01-15 16:02:16 -0800453renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
Tim Murraya7aa8002012-10-29 16:06:00 -0700454endif
455
Ying Wangb9319562015-04-03 16:15:28 -0700456bc_dep_files := $(addprefix $(renderscript_intermediate)/, \
457 $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
458
Ying Wang6ef65192014-01-15 16:02:16 -0800459$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes)
Tim Murraya7aa8002012-10-29 16:06:00 -0700460$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
461$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
462$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
463$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate)
Ying Wangb9319562015-04-03 16:15:28 -0700464$(RenderScript_file_stamp): PRIVATE_DEP_FILES := $(bc_dep_files)
Tim Murraya7aa8002012-10-29 16:06:00 -0700465$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
466 $(transform-renderscripts-to-cpp-and-bc)
467
Ying Wangb9319562015-04-03 16:15:28 -0700468# include the dependency files (.d/.P) generated by llvm-rs-cc.
469-include $(bc_dep_files:%.d=%.P)
Tim Murraya7aa8002012-10-29 16:06:00 -0700470
471LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
472
473rs_generated_cpps := $(addprefix \
474 $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \
475 $(notdir $(renderscript_sources)))))
476
Stephen Hines8ff92522014-06-06 12:51:47 -0700477# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Tim Murraya7aa8002012-10-29 16:06:00 -0700478$(rs_generated_cpps) : $(RenderScript_file_stamp)
Ying Wang81ab8332014-05-28 16:17:09 -0700479 @echo "Updated RS generated cpp file $@."
Tim Murraya7aa8002012-10-29 16:06:00 -0700480
Ying Wang6ef65192014-01-15 16:02:16 -0800481my_c_includes += $(renderscript_intermediate)
482my_generated_sources += $(rs_generated_cpps)
Tim Murraya7aa8002012-10-29 16:06:00 -0700483
484endif
485
486
The Android Open Source Project88b60792009-03-03 19:28:42 -0800487###########################################################
488## Stuff source generated from one-off tools
489###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800490$(my_generated_sources): PRIVATE_MODULE := $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800491
Colin Crossd8262642014-01-24 23:17:21 -0800492my_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 -0800493
Colin Crossd8262642014-01-24 23:17:21 -0800494$(my_gen_sources_copy): $(intermediates)/% : $(generated_sources_dir)/% | $(ACP)
495 @echo "Copy: $@"
496 $(copy-file-to-target)
497
498my_generated_sources := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(my_generated_sources))
499
500ALL_GENERATED_SOURCES += $(my_generated_sources)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800501
502###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700503## Compile the .proto files to .cc and then to .o
504###########################################################
Ying Wangb8e01852014-01-23 15:09:04 -0800505proto_sources := $(filter %.proto,$(my_src_files))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700506proto_generated_objects :=
507proto_generated_headers :=
508ifneq ($(proto_sources),)
509proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
Ying Wangead89442014-02-25 11:18:40 -0800510proto_generated_cc_sources_dir := $(generated_sources_dir)/proto
Ying Wanga5fc87a2010-11-02 18:43:16 -0700511proto_generated_cc_sources := $(addprefix $(proto_generated_cc_sources_dir)/, \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700512 $(patsubst %.proto,%.pb.cc,$(proto_sources_fullpath)))
Ying Wangead89442014-02-25 11:18:40 -0800513proto_generated_headers := $(patsubst %.pb.cc,%.pb.h, $(proto_generated_cc_sources))
514proto_generated_obj_dir := $(intermediates)/proto
515proto_generated_objects := $(addprefix $(proto_generated_obj_dir)/, \
516 $(patsubst %.proto,%.pb.o,$(proto_sources_fullpath)))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700517
Ying Wang49085952014-05-06 13:03:32 -0700518# Auto-export the generated proto source dir.
519LOCAL_EXPORT_C_INCLUDE_DIRS += $(proto_generated_cc_sources_dir)
520
Ying Wangead89442014-02-25 11:18:40 -0800521# Ensure the transform-proto-to-cc rule is only defined once in multilib build.
522ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined
Ying Wanga5fc87a2010-11-02 18:43:16 -0700523$(proto_generated_cc_sources): PRIVATE_PROTO_INCLUDES := $(TOP)
524$(proto_generated_cc_sources): PRIVATE_PROTO_CC_OUTPUT_DIR := $(proto_generated_cc_sources_dir)
Ying Wang33c0d952010-11-05 11:30:58 -0700525$(proto_generated_cc_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700526$(proto_generated_cc_sources): $(proto_generated_cc_sources_dir)/%.pb.cc: %.proto $(PROTOC)
527 $(transform-proto-to-cc)
528
Stephen Hines8ff92522014-06-06 12:51:47 -0700529# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Ying Wanga5fc87a2010-11-02 18:43:16 -0700530$(proto_generated_headers): $(proto_generated_cc_sources_dir)/%.pb.h: $(proto_generated_cc_sources_dir)/%.pb.cc
Ying Wang81ab8332014-05-28 16:17:09 -0700531 @echo "Updated header file $@."
Ying Wanga5fc87a2010-11-02 18:43:16 -0700532
Ying Wangead89442014-02-25 11:18:40 -0800533$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true
534endif # transform-proto-to-cc rule included only once
535
Ying Wang022a7b32012-06-13 11:38:10 -0700536$(proto_generated_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
537$(proto_generated_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wangead89442014-02-25 11:18:40 -0800538$(proto_generated_objects): $(proto_generated_obj_dir)/%.o: $(proto_generated_cc_sources_dir)/%.cc $(proto_generated_headers)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700539 $(transform-$(PRIVATE_HOST)cpp-to-o)
540-include $(proto_generated_objects:%.o=%.P)
541
Ying Wang6ef65192014-01-15 16:02:16 -0800542my_c_includes += external/protobuf/src $(proto_generated_cc_sources_dir)
543my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI
Ying Wanga5fc87a2010-11-02 18:43:16 -0700544ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full)
Dan Albertc3031c72014-11-11 10:42:17 -0800545 ifdef LOCAL_SDK_VERSION
546 my_static_libraries += libprotobuf-cpp-full
547 else
548 my_shared_libraries += libprotobuf-cpp-full
549 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700550else
Dan Albertc3031c72014-11-11 10:42:17 -0800551 ifdef LOCAL_SDK_VERSION
552 my_static_libraries += libprotobuf-cpp-lite
553 else
554 my_shared_libraries += libprotobuf-cpp-lite
555 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700556endif
Ying Wangead89442014-02-25 11:18:40 -0800557endif # $(proto_sources) non-empty
Ying Wanga5fc87a2010-11-02 18:43:16 -0700558
559
560###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000561## YACC: Compile .y and .yy files to .cpp and the to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800562###########################################################
563
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000564y_yacc_sources := $(filter %.y,$(my_src_files))
565y_yacc_cpps := $(addprefix \
566 $(intermediates)/,$(y_yacc_sources:.y=$(LOCAL_CPP_EXTENSION)))
567
568yy_yacc_sources := $(filter %.yy,$(my_src_files))
569yy_yacc_cpps := $(addprefix \
570 $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION)))
571
572yacc_cpps := $(y_yacc_cpps) $(yy_yacc_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800573yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h)
574yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o)
575
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000576ifneq ($(strip $(y_yacc_cpps)),)
577$(y_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700578 $(TOPDIR)$(LOCAL_PATH)/%.y \
Dan Albert954b5bd2014-11-08 22:20:03 -0800579 $(lex_cpps) $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800580 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
581$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000582endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800583
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000584ifneq ($(strip $(yy_yacc_cpps)),)
585$(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
586 $(TOPDIR)$(LOCAL_PATH)/%.yy \
Dan Albert954b5bd2014-11-08 22:20:03 -0800587 $(lex_cpps) $(my_additional_dependencies)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000588 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
589$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
590endif
591
592ifneq ($(strip $(yacc_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800593$(yacc_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
594$(yacc_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
595$(yacc_objects): $(intermediates)/%.o: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
596 $(transform-$(PRIVATE_HOST)cpp-to-o)
597endif
598
599###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000600## LEX: Compile .l and .ll files to .cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800601###########################################################
602
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000603l_lex_sources := $(filter %.l,$(my_src_files))
604l_lex_cpps := $(addprefix \
605 $(intermediates)/,$(l_lex_sources:.l=$(LOCAL_CPP_EXTENSION)))
606
607ll_lex_sources := $(filter %.ll,$(my_src_files))
608ll_lex_cpps := $(addprefix \
609 $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION)))
610
611lex_cpps := $(l_lex_cpps) $(ll_lex_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800612lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o)
613
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000614ifneq ($(strip $(l_lex_cpps)),)
615$(l_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700616 $(TOPDIR)$(LOCAL_PATH)/%.l
The Android Open Source Project88b60792009-03-03 19:28:42 -0800617 $(transform-l-to-cpp)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000618endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800619
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000620ifneq ($(strip $(ll_lex_cpps)),)
621$(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
622 $(TOPDIR)$(LOCAL_PATH)/%.ll
623 $(transform-l-to-cpp)
624endif
625
626ifneq ($(strip $(lex_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800627$(lex_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
628$(lex_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
629$(lex_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700630 $(intermediates)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800631 $(my_additional_dependencies) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700632 $(yacc_headers)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800633 $(transform-$(PRIVATE_HOST)cpp-to-o)
634endif
635
636###########################################################
637## C++: Compile .cpp files to .o.
638###########################################################
639
Jeff Browne33ba4c2011-07-11 22:11:46 -0700640# we also do this on host modules, even though
The Android Open Source Project88b60792009-03-03 19:28:42 -0800641# it's not really arm, because there are files that are shared.
Ying Wangfb22a422015-03-10 18:03:11 -0700642cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(my_src_files)))
643dotdot_arm_sources := $(filter ../%,$(cpp_arm_sources))
644cpp_arm_sources := $(filter-out ../%,$(cpp_arm_sources))
645cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800646
Ying Wangfb22a422015-03-10 18:03:11 -0700647# For source files starting with ../, we remove all the ../ in the object file path,
648# to avoid object file escaping the intermediate directory.
649dotdot_arm_objects :=
650$(foreach s,$(dotdot_arm_sources),\
651 $(eval $(call compile-dotdot-cpp-file,$(s),\
652 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
653 dotdot_arm_objects)))
654
655dotdot_sources := $(filter ../%$(LOCAL_CPP_EXTENSION),$(my_src_files))
656dotdot_objects :=
657$(foreach s,$(dotdot_sources),\
658 $(eval $(call compile-dotdot-cpp-file,$(s),\
659 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
660 dotdot_objects)))
661
662cpp_normal_sources := $(filter-out ../%,$(filter %$(LOCAL_CPP_EXTENSION),$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800663cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o))
664
Ying Wangfb22a422015-03-10 18:03:11 -0700665$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
666$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
667$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
668$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800669
670cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects)
671
672ifneq ($(strip $(cpp_objects)),)
673$(cpp_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700674 $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800675 $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800676 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800677 $(transform-$(PRIVATE_HOST)cpp-to-o)
678-include $(cpp_objects:%.o=%.P)
679endif
680
Ying Wangfb22a422015-03-10 18:03:11 -0700681cpp_objects += $(dotdot_arm_objects) $(dotdot_objects)
682
The Android Open Source Project88b60792009-03-03 19:28:42 -0800683###########################################################
684## C++: Compile generated .cpp files to .o.
685###########################################################
686
Ying Wangec6d6262014-01-16 16:21:03 -0800687gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800688gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o)
689
690ifneq ($(strip $(gen_cpp_objects)),)
691# Compile all generated files as thumb.
692# TODO: support compiling certain generated files as arm.
693$(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
694$(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400695$(gen_cpp_objects): $(intermediates)/%.o: \
696 $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800697 $(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 $(gen_cpp_objects:%.o=%.P)
701endif
702
703###########################################################
704## S: Compile generated .S and .s files to .o.
705###########################################################
706
Ying Wangec6d6262014-01-16 16:21:03 -0800707gen_S_sources := $(filter %.S,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800708gen_S_objects := $(gen_S_sources:%.S=%.o)
709
710ifneq ($(strip $(gen_S_sources)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400711$(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800712 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800713 $(transform-$(PRIVATE_HOST)s-to-o)
714-include $(gen_S_objects:%.o=%.P)
715endif
716
Ying Wangec6d6262014-01-16 16:21:03 -0800717gen_s_sources := $(filter %.s,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800718gen_s_objects := $(gen_s_sources:%.s=%.o)
719
720ifneq ($(strip $(gen_s_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400721$(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800722 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800723 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
724-include $(gen_s_objects:%.o=%.P)
725endif
726
727gen_asm_objects := $(gen_S_objects) $(gen_s_objects)
728
729###########################################################
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000730## o: Include generated .o files in output.
731###########################################################
732
Ying Wangec6d6262014-01-16 16:21:03 -0800733gen_o_objects := $(filter %.o,$(my_generated_sources))
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000734
735###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800736## C: Compile .c files to .o.
737###########################################################
738
Ying Wangfb22a422015-03-10 18:03:11 -0700739c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files)))
740dotdot_arm_sources := $(filter ../%,$(c_arm_sources))
741c_arm_sources := $(filter-out ../%,$(c_arm_sources))
742c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800743
Ying Wangfb22a422015-03-10 18:03:11 -0700744# For source files starting with ../, we remove all the ../ in the object file path,
745# to avoid object file escaping the intermediate directory.
746dotdot_arm_objects :=
747$(foreach s,$(dotdot_arm_sources),\
748 $(eval $(call compile-dotdot-c-file,$(s),\
749 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
750 dotdot_arm_objects)))
751
752dotdot_sources := $(filter ../%.c, $(my_src_files))
753dotdot_objects :=
754$(foreach s, $(dotdot_sources),\
755 $(eval $(call compile-dotdot-c-file,$(s),\
756 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
757 dotdot_objects)))
758
759c_normal_sources := $(filter-out ../%,$(filter %.c,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800760c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o))
761
Ying Wangfb22a422015-03-10 18:03:11 -0700762$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
763$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
764$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
765$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800766
767c_objects := $(c_arm_objects) $(c_normal_objects)
768
769ifneq ($(strip $(c_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400770$(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800771 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800772 $(transform-$(PRIVATE_HOST)c-to-o)
773-include $(c_objects:%.o=%.P)
774endif
775
Ying Wangfb22a422015-03-10 18:03:11 -0700776c_objects += $(dotdot_arm_objects) $(dotdot_objects)
777
The Android Open Source Project88b60792009-03-03 19:28:42 -0800778###########################################################
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700779## C: Compile generated .c files to .o.
780###########################################################
781
Ying Wangec6d6262014-01-16 16:21:03 -0800782gen_c_sources := $(filter %.c,$(my_generated_sources))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700783gen_c_objects := $(gen_c_sources:%.c=%.o)
784
785ifneq ($(strip $(gen_c_objects)),)
786# Compile all generated files as thumb.
787# TODO: support compiling certain generated files as arm.
788$(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
789$(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400790$(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800791 $(my_additional_dependencies)
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700792 $(transform-$(PRIVATE_HOST)c-to-o)
793-include $(gen_c_objects:%.o=%.P)
794endif
795
796###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200797## ObjC: Compile .m files to .o
798###########################################################
799
Ying Wangb8e01852014-01-23 15:09:04 -0800800objc_sources := $(filter %.m,$(my_src_files))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200801objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o))
802
803ifneq ($(strip $(objc_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400804$(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800805 $(my_additional_dependencies)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200806 $(transform-$(PRIVATE_HOST)m-to-o)
807-include $(objc_objects:%.o=%.P)
808endif
809
810###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800811## AS: Compile .S files to .o.
812###########################################################
813
Ying Wangb8e01852014-01-23 15:09:04 -0800814asm_sources_S := $(filter %.S,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -0700815dotdot_sources := $(filter ../%,$(asm_sources_S))
816asm_sources_S := $(filter-out ../%,$(asm_sources_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800817asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o))
818
Ying Wangfb22a422015-03-10 18:03:11 -0700819dotdot_objects_S :=
820$(foreach s,$(dotdot_sources),\
821 $(eval $(call compile-dotdot-s-file,$(s),\
822 $(my_additional_dependencies),\
823 dotdot_objects_S)))
824
The Android Open Source Project88b60792009-03-03 19:28:42 -0800825ifneq ($(strip $(asm_objects_S)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400826$(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800827 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800828 $(transform-$(PRIVATE_HOST)s-to-o)
829-include $(asm_objects_S:%.o=%.P)
830endif
831
Ying Wangb8e01852014-01-23 15:09:04 -0800832asm_sources_s := $(filter %.s,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -0700833dotdot_sources := $(filter ../%,$(asm_sources_s))
834asm_sources_s := $(filter-out ../%,$(asm_sources_s))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800835asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o))
836
Ying Wangfb22a422015-03-10 18:03:11 -0700837dotdot_objects_s :=
838$(foreach s,$(dotdot_sources),\
839 $(eval $(call compile-dotdot-s-file-no-deps,$(s),\
840 $(my_additional_dependencies),\
841 dotdot_objects_s)))
842
The Android Open Source Project88b60792009-03-03 19:28:42 -0800843ifneq ($(strip $(asm_objects_s)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400844$(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800845 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800846 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800847endif
848
Ying Wangfb22a422015-03-10 18:03:11 -0700849asm_objects := $(dotdot_objects_S) $(dotdot_objects_s) $(asm_objects_S) $(asm_objects_s)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800850
851
Ying Wangfe1e5c32015-03-09 18:57:40 -0700852# .asm for x86/x86_64 needs to be compiled with yasm.
Ying Wang7b913ce2014-06-05 19:05:47 -0700853asm_sources_asm := $(filter %.asm,$(my_src_files))
854ifneq ($(strip $(asm_sources_asm)),)
855asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o))
856$(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \
Dan Albert954b5bd2014-11-08 22:20:03 -0800857 $(my_additional_dependencies)
Ying Wang7b913ce2014-06-05 19:05:47 -0700858 $(transform-asm-to-o)
859
860asm_objects += $(asm_objects_asm)
861endif
Ying Wang7b913ce2014-06-05 19:05:47 -0700862
Jeff Davidson680f0712015-01-08 18:25:30 -0800863
864##########################################################
865## Set up installed module dependency
866## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for
867## they may cusomize their install path with LOCAL_MODULE_PATH
868##########################################################
869# Get the list of INSTALLED libraries as module names.
870ifdef LOCAL_SDK_VERSION
871 installed_shared_library_module_names := \
872 $(my_shared_libraries)
873else
874 installed_shared_library_module_names := \
875 $(my_shared_libraries) $(my_system_shared_libraries)
876endif
877
878# The real dependency will be added after all Android.mks are loaded and the install paths
879# of the shared libraries are determined.
880ifdef LOCAL_INSTALLED_MODULE
881ifdef installed_shared_library_module_names
882$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
883 $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names)))
884endif
885endif
886
887
Ying Wang5f074802011-11-08 09:31:21 -0800888####################################################
889## Import includes
890####################################################
891import_includes := $(intermediates)/import_includes
892import_includes_deps := $(strip \
893 $(foreach l, $(installed_shared_library_module_names), \
Ying Wang6ef65192014-01-15 16:02:16 -0800894 $(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 -0800895 $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \
Ying Wang6ef65192014-01-15 16:02:16 -0800896 $(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 -0800897$(import_includes): PRIVATE_IMPORT_EXPORT_INCLUDES := $(import_includes_deps)
898$(import_includes) : $(LOCAL_MODULE_MAKEFILE) $(import_includes_deps)
Ying Wang5f074802011-11-08 09:31:21 -0800899 @echo Import includes file: $@
900 $(hide) mkdir -p $(dir $@) && rm -f $@
901ifdef import_includes_deps
Ying Wang14d02a32015-01-22 15:44:04 -0800902 $(hide) for f in $(PRIVATE_IMPORT_EXPORT_INCLUDES); do \
Ying Wang5f074802011-11-08 09:31:21 -0800903 cat $$f >> $@; \
904 done
905else
906 $(hide) touch $@
907endif
908
The Android Open Source Project88b60792009-03-03 19:28:42 -0800909###########################################################
910## Common object handling.
911###########################################################
912
913# some rules depend on asm_objects being first. If your code depends on
914# being first, it's reasonable to require it to be assembly
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100915normal_objects := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700916 $(asm_objects) \
917 $(cpp_objects) \
918 $(gen_cpp_objects) \
919 $(gen_asm_objects) \
920 $(c_objects) \
921 $(gen_c_objects) \
922 $(objc_objects) \
923 $(yacc_objects) \
924 $(lex_objects) \
925 $(proto_generated_objects) \
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100926 $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES))
927
928all_objects := $(normal_objects) $(gen_o_objects)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800929
Colin Cross2d206702014-02-13 13:41:52 -0800930my_c_includes += $(TOPDIR)$(LOCAL_PATH) $(intermediates) $(generated_sources_dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800931
Ying Wang848020f2012-08-14 10:13:16 -0700932ifndef LOCAL_SDK_VERSION
Ying Wang6ef65192014-01-15 16:02:16 -0800933 my_c_includes += $(JNI_H_INCLUDE)
Ying Wangbce4b752010-07-22 15:51:56 -0700934endif
935
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100936# all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES;
937# use normal_objects here to avoid creating circular dependencies. This assumes
938# that custom build rules which generate .o files don't consume other generated
939# sources as input (or if they do they take care of that dependency themselves).
Ying Wangec6d6262014-01-16 16:21:03 -0800940$(normal_objects) : | $(my_generated_sources)
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100941$(all_objects) : | $(import_includes)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800942ALL_C_CPP_ETC_OBJECTS += $(all_objects)
943
The Android Open Source Project88b60792009-03-03 19:28:42 -0800944
945###########################################################
946# Standard library handling.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800947###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800948
949###########################################################
950# The list of libraries that this module will link against are in
951# these variables. Each is a list of bare module names like "libc libm".
952#
953# LOCAL_SHARED_LIBRARIES
954# LOCAL_STATIC_LIBRARIES
955# LOCAL_WHOLE_STATIC_LIBRARIES
956#
957# We need to convert the bare names into the dependencies that
958# we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE.
959# LOCAL_BUILT_MODULE should depend on the BUILT versions of the
960# libraries, so that simply building this module doesn't force
961# an install of a library. Similarly, LOCAL_INSTALLED_MODULE
962# should depend on the INSTALLED versions of the libraries so
963# that they get installed when this module does.
964###########################################################
965# NOTE:
966# WHOLE_STATIC_LIBRARIES are libraries that are pulled into the
967# module without leaving anything out, which is useful for turning
968# a collection of .a files into a .so file. Linking against a
969# normal STATIC_LIBRARY will only pull in code/symbols that are
970# referenced by the module. (see gcc/ld's --whole-archive option)
971###########################################################
972
973# Get the list of BUILT libraries, which are under
974# various intermediates directories.
975so_suffix := $($(my_prefix)SHLIB_SUFFIX)
976a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX)
977
Ying Wang848020f2012-08-14 10:13:16 -0700978ifdef LOCAL_SDK_VERSION
The Android Open Source Project88b60792009-03-03 19:28:42 -0800979built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -0800980 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800981 $(addsuffix $(so_suffix), \
Ying Wang6ef65192014-01-15 16:02:16 -0800982 $(my_shared_libraries)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800983
Ying Wangd8d37212014-03-21 16:17:04 -0700984# Add the NDK libraries to the built module dependency
Ying Wangcce4c972011-03-03 18:53:53 -0800985my_system_shared_libraries_fullpath := \
986 $(my_ndk_stl_shared_lib_fullpath) \
Andrew Hsieh140761af02014-04-25 23:47:10 -0700987 $(addprefix $(my_ndk_sysroot_lib)/, \
Ying Wangd8d37212014-03-21 16:17:04 -0700988 $(addsuffix $(so_suffix), $(my_system_shared_libraries)))
Ying Wang1a081002010-07-13 14:55:47 -0700989
990built_shared_libraries += $(my_system_shared_libraries_fullpath)
Ying Wang1a081002010-07-13 14:55:47 -0700991else
Ying Wang1a081002010-07-13 14:55:47 -0700992built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -0800993 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
Ying Wang1a081002010-07-13 14:55:47 -0700994 $(addsuffix $(so_suffix), \
Ying Wangd8d37212014-03-21 16:17:04 -0700995 $(installed_shared_library_module_names)))
Ying Wang1a081002010-07-13 14:55:47 -0700996endif
997
The Android Open Source Project88b60792009-03-03 19:28:42 -0800998built_static_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -0800999 $(foreach lib,$(my_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001000 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -08001001 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 -08001002
Ying Wang848020f2012-08-14 10:13:16 -07001003ifdef LOCAL_SDK_VERSION
Ying Wangcce4c972011-03-03 18:53:53 -08001004built_static_libraries += $(my_ndk_stl_static_lib)
1005endif
1006
The Android Open Source Project88b60792009-03-03 19:28:42 -08001007built_whole_libraries := \
Colin Cross90353fe2014-02-04 14:53:25 -08001008 $(foreach lib,$(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001009 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -08001010 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 -08001011
The Android Open Source Project88b60792009-03-03 19:28:42 -08001012# We don't care about installed static libraries, since the
1013# libraries have already been linked into the module at that point.
1014# We do, however, care about the NOTICE files for any static
Steve Blockd14d3b42012-03-01 11:34:41 +00001015# libraries that we use. (see notice_files.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001016
1017installed_static_library_notice_file_targets := \
Colin Cross90353fe2014-02-04 14:53:25 -08001018 $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001019 NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib))
1020
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001021# Default is -fno-rtti.
Doug Kwane3c3c6d2011-06-07 10:55:48 -07001022ifeq ($(strip $(LOCAL_RTTI_FLAG)),)
1023LOCAL_RTTI_FLAG := -fno-rtti
1024endif
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001025
The Android Open Source Project88b60792009-03-03 19:28:42 -08001026###########################################################
1027# Rule-specific variable definitions
1028###########################################################
Logan Chiene6f65432013-12-10 19:07:41 +08001029
Ying Wang824344a2014-05-27 13:03:36 -07001030ifeq ($(my_clang),true)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001031my_cflags += $(LOCAL_CLANG_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -08001032my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS)
Dan Albertd2fa96d2014-11-28 14:00:12 -08001033my_cppflags += $(LOCAL_CLANG_CPPFLAGS)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001034my_asflags += $(LOCAL_CLANG_ASFLAGS)
1035my_ldflags += $(LOCAL_CLANG_LDFLAGS)
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -07001036my_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 -08001037my_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 -07001038my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix))
1039my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix))
1040my_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 -08001041my_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cflags))
1042my_cppflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cppflags))
1043my_asflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_asflags))
1044my_ldflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_ldflags))
Logan Chiene6f65432013-12-10 19:07:41 +08001045endif
1046
Ying Wangd7914632014-10-28 14:50:59 -07001047ifeq ($(my_fdo_build), true)
1048 my_cflags := $(patsubst -Os,-O2,$(my_cflags))
1049 fdo_incompatible_flags := -fno-early-inlining -finline-limit=%
1050 my_cflags := $(filter-out $(fdo_incompatible_flags),$(my_cflags))
Dehao Chen295a6d22014-09-19 10:18:12 -07001051endif
1052
The Android Open Source Project88b60792009-03-03 19:28:42 -08001053$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -08001054$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags)
Stephen Hines15680292014-11-26 00:53:46 -08001055$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(my_conlyflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001056$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags)
1057$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags)
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001058$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001059$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001060$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes)
Ying Wang5f074802011-11-08 09:31:21 -08001061$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes)
Ying Wang6ef65192014-01-15 16:02:16 -08001062$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags)
Dan Albertb05f2ca2014-09-12 14:46:57 -07001063$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs)
Ying Wangb8e01852014-01-23 15:09:04 -08001064$(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 -08001065
1066# this is really the way to get the files onto the command line instead
1067# of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work
1068$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries)
1069$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries)
1070$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries)
1071$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects)
1072
1073###########################################################
1074# Define library dependencies.
1075###########################################################
1076# all_libraries is used for the dependencies on LOCAL_BUILT_MODULE.
1077all_libraries := \
1078 $(built_shared_libraries) \
1079 $(built_static_libraries) \
1080 $(built_whole_libraries)
1081
The Android Open Source Project88b60792009-03-03 19:28:42 -08001082# Also depend on the notice files for any static libraries that
1083# are linked into this module. This will force them to be installed
1084# when this module is.
1085$(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets)
Ying Wang5f074802011-11-08 09:31:21 -08001086
1087###########################################################
1088# Export includes
1089###########################################################
1090export_includes := $(intermediates)/export_includes
1091$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(LOCAL_EXPORT_C_INCLUDE_DIRS)
Ying Wang49085952014-05-06 13:03:32 -07001092# Make sure .pb.h are already generated before any dependent source files get compiled.
1093$(export_includes) : $(LOCAL_MODULE_MAKEFILE) $(proto_generated_headers)
Ying Wang5f074802011-11-08 09:31:21 -08001094 @echo Export includes file: $< -- $@
1095 $(hide) mkdir -p $(dir $@) && rm -f $@
1096ifdef LOCAL_EXPORT_C_INCLUDE_DIRS
1097 $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
1098 echo "-I $$d" >> $@; \
1099 done
1100else
1101 $(hide) touch $@
1102endif
Ying Wang616e5962012-04-18 17:35:55 -07001103
1104# Make sure export_includes gets generated when you are running mm/mmm
1105$(LOCAL_BUILT_MODULE) : | $(export_includes)