blob: a45e439cc33e6ff64657e7e4c72b11591c4bbeb6 [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
Dan Albertd3d894d2014-11-14 15:28:49 -080080 # The bionic linker now has support for gnu style hashes (which are much
81 # faster!), but shipping to older devices requires the old style hash.
82 #ifeq ($(shell expr $(LOCAL_SDK_VERSION) >= FIRST_SUPPORTED_VERSION),0)
83 my_ldflags += -Wl,--hash-style=sysv
84 #endif
85
Ying Wangcce4c972011-03-03 18:53:53 -080086 # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location.
87 # See ndk/docs/CPLUSPLUS-SUPPORT.html
88 my_ndk_stl_include_path :=
89 my_ndk_stl_shared_lib_fullpath :=
90 my_ndk_stl_shared_lib :=
91 my_ndk_stl_static_lib :=
Andrew Hsieh73d800e2014-03-04 17:11:52 +080092 my_ndk_stl_cppflags :=
Duane Sand1a074872014-11-08 15:25:18 -080093 my_cpu_variant := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)
94 ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
95 my_cpu_variant := mips32r6
96 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +080097 LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -080098 ifeq (,$(LOCAL_NDK_STL_VARIANT))
99 LOCAL_NDK_STL_VARIANT := system
100 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800101 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 -0700102 $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800103 endif
104 ifeq (system,$(LOCAL_NDK_STL_VARIANT))
105 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
106 # for "system" variant, the shared library exists in the system library and -lstdc++ is added by default.
107 else # LOCAL_NDK_STL_VARIANT is not system
108 ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
109 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
110 ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800111 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 -0800112 else
Duane Sand1a074872014-11-08 15:25:18 -0800113 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 -0800114 my_ndk_stl_shared_lib := -lstlport_shared
115 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800116 else # LOCAL_NDK_STL_VARIANT is not stlport_* either
117 ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
118 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include \
119 $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include \
120 $(my_ndk_source_root)/android/support/include
121 ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800122 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 +0800123 else
Duane Sand1a074872014-11-08 15:25:18 -0800124 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 +0800125 my_ndk_stl_shared_lib := -lc++_shared
126 endif
127 my_ndk_stl_cppflags := -std=c++11
Ying Wangcce4c972011-03-03 18:53:53 -0800128 else
129 # LOCAL_NDK_STL_VARIANT is gnustl_static
Duane Sand1a074872014-11-08 15:25:18 -0800130 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 -0700131 $(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 -0800132 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 -0800133 endif
134 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800135 endif
Ying Wang1a081002010-07-13 14:55:47 -0700136endif
137
Dan Albert95994de2014-08-07 18:29:11 -0700138# MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
139# all code is position independent, and then those warnings get promoted to
140# errors.
Ying Wang594a10a2014-08-07 20:08:04 -0700141ifndef USE_MINGW
Dan Albert4803ce22014-08-06 12:36:46 -0700142ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES)
143my_cflags += -fpie
144else
145my_cflags += -fPIC
146endif
Dan Albert95994de2014-08-07 18:29:11 -0700147endif
Dan Albert4803ce22014-08-06 12:36:46 -0700148
Ying Wang6feb6d52014-04-17 10:03:35 -0700149my_src_files += $(LOCAL_SRC_FILES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SRC_FILES_$(my_32_64_bit_suffix))
150my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix))
151my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix))
152my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix))
153my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix))
154my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix))
155my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix))
156my_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 -0800157
Dan Albertdb905e72014-08-18 11:14:38 -0700158my_clang := $(strip $(LOCAL_CLANG))
Ying Wang824344a2014-05-27 13:03:36 -0700159ifdef LOCAL_CLANG_$(my_32_64_bit_suffix)
Dan Albertdb905e72014-08-18 11:14:38 -0700160my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix)))
Ying Wang824344a2014-05-27 13:03:36 -0700161endif
162ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Dan Albertdb905e72014-08-18 11:14:38 -0700163my_clang := $(strip $(LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Ying Wang824344a2014-05-27 13:03:36 -0700164endif
165
Tim Murray92d79cb2014-04-04 14:38:29 -0700166# clang is enabled by default for host builds
167# enable it unless we've specifically disabled clang above
168ifdef LOCAL_IS_HOST_MODULE
Tim Murrayf3ca3d52014-07-24 15:20:18 -0700169 ifneq ($(HOST_OS),windows)
Tim Murray5ca1dc12014-07-24 14:42:53 -0700170 ifeq ($(my_clang),)
171 my_clang := true
172 endif
173 endif
Tim Murray92d79cb2014-04-04 14:38:29 -0700174endif
175
Tim Murray06659bc2014-08-13 11:53:07 -0700176# Add option to make clang the default for device build
177ifeq ($(USE_CLANG_PLATFORM_BUILD),true)
178 ifeq ($(my_clang),)
179 my_clang := true
180 endif
181endif
182
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800183# arch-specific static libraries go first so that generic ones can depend on them
Ying Wang6feb6d52014-04-17 10:03:35 -0700184my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries)
185my_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 -0800186
Ying Wang6feb6d52014-04-17 10:03:35 -0700187my_cflags := $(filter-out $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_UNSUPPORTED_CFLAGS),$(my_cflags))
Ying Wang6ef65192014-01-15 16:02:16 -0800188
Ying Wang75e8fcb2014-10-07 13:03:29 -0700189include $(BUILD_SYSTEM)/cxx_stl_setup.mk
Ying Wangd90de322014-05-23 16:42:37 -0700190
Ying Wang285045b2013-08-13 12:35:10 -0700191# Add static HAL libraries
192ifdef LOCAL_HAL_STATIC_LIBRARIES
193$(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \
194 $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\
Ying Wang6ef65192014-01-15 16:02:16 -0800195 $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\
196 $(eval my_static_libraries += $(lib).default)))
Ying Wang285045b2013-08-13 12:35:10 -0700197b_lib :=
198endif
199
Dan Albert4ae5d4b2014-10-31 16:23:08 -0700200include $(BUILD_SYSTEM)/config_sanitizers.mk
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400201
Ying Wangba8b3772014-03-10 18:23:08 -0700202ifeq ($(strip $($(LOCAL_2ND_ARCH_VAR_PREFIX)WITHOUT_$(my_prefix)CLANG)),true)
Ying Wang824344a2014-05-27 13:03:36 -0700203 my_clang :=
Mike Lockwood051a1742013-06-14 10:52:50 -0700204endif
205
Shih-wei Liaoc8dfc162013-01-27 01:45:59 -0800206# Add in libcompiler_rt for all regular device builds
Mike Lockwooddaf5e222012-10-18 10:17:47 -0700207ifeq (,$(LOCAL_SDK_VERSION)$(LOCAL_IS_HOST_MODULE)$(WITHOUT_LIBCOMPILER_RT))
Ying Wang6ef65192014-01-15 16:02:16 -0800208 my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES)
Stephen Hinesc72f3962012-06-11 14:53:34 -0700209endif
210
Jing Yu2dcc8062009-09-21 16:31:50 -0700211####################################################
212## Add FDO flags if FDO is turned on and supported
Dehao Chen295a6d22014-09-19 10:18:12 -0700213## Please note that we will do option filtering during FDO build.
214## i.e. Os->O2, remove -fno-early-inline and -finline-limit.
215##################################################################
Ying Wang45d01432014-10-28 14:50:59 -0700216my_fdo_build :=
217ifneq ($(filter true always, $(LOCAL_FDO_SUPPORT)),)
218 ifeq ($(BUILD_FDO_INSTRUMENT),true)
219 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_CFLAGS)
220 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_LDFLAGS)
221 my_fdo_build := true
222 else ifneq ($(filter true,$(BUILD_FDO_OPTIMIZE))$(filter always,$(LOCAL_FDO_SUPPORT)),)
223 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_OPTIMIZE_CFLAGS)
224 my_fdo_build := true
synergydev4a605762013-08-05 02:44:37 -0700225 endif
Jing Yu2dcc8062009-09-21 16:31:50 -0700226endif
227
The Android Open Source Project88b60792009-03-03 19:28:42 -0800228###########################################################
Jim Huang20d1ba62010-10-14 16:15:56 +0800229## Explicitly declare assembly-only __ASSEMBLY__ macro for
230## assembly source
231###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800232my_asflags += -D__ASSEMBLY__
Jim Huang20d1ba62010-10-14 16:15:56 +0800233
Ying Wangd8d37212014-03-21 16:17:04 -0700234
Jim Huang20d1ba62010-10-14 16:15:56 +0800235###########################################################
Ying Wang1a081002010-07-13 14:55:47 -0700236## Define PRIVATE_ variables from global vars
237###########################################################
Ying Wang7fff9a12014-01-09 14:39:41 -0800238ifndef LOCAL_IS_HOST_MODULE
Ying Wang848020f2012-08-14 10:13:16 -0700239ifdef LOCAL_SDK_VERSION
Ying Wang1a081002010-07-13 14:55:47 -0700240my_target_project_includes :=
Andrew Hsieh140761af02014-04-25 23:47:10 -0700241my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_sysroot_include)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800242my_target_global_cppflags := $(my_ndk_stl_cppflags)
Ying Wang1a081002010-07-13 14:55:47 -0700243else
Ying Wang6ef65192014-01-15 16:02:16 -0800244my_target_project_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES)
245my_target_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_C_INCLUDES)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800246my_target_global_cppflags :=
Ying Wangf4723fa2013-08-15 11:01:10 -0700247endif # LOCAL_SDK_VERSION
248
Ying Wang824344a2014-05-27 13:03:36 -0700249ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800250my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800251my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800252my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CPPFLAGS)
Ying Wang1f982832014-02-06 18:08:44 -0800253my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_LDFLAGS)
Ying Wangda4bf422012-08-16 16:45:01 -0700254else
Ying Wang6ef65192014-01-15 16:02:16 -0800255my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800256my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800257my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800258my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700259endif # my_clang
Ying Wangda4bf422012-08-16 16:45:01 -0700260
Ying Wang1a081002010-07-13 14:55:47 -0700261$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes)
Evgeniy Stepanova7095e92012-03-30 12:18:52 +0400262$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes)
Ying Wang1a081002010-07-13 14:55:47 -0700263$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800264$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CONLYFLAGS := $(my_target_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800265$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags)
266$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags)
267
Ying Wang7fff9a12014-01-09 14:39:41 -0800268else # LOCAL_IS_HOST_MODULE
269
Ying Wang824344a2014-05-27 13:03:36 -0700270ifeq ($(my_clang),true)
Ying Wang6feb6d52014-04-17 10:03:35 -0700271my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800272my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CONLYFLAGS)
Ying Wang6feb6d52014-04-17 10:03:35 -0700273my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CPPFLAGS)
274my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_LDFLAGS)
Stephen Hinesf0089662014-09-25 22:35:16 -0700275my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Logan Chiene6f65432013-12-10 19:07:41 +0800276else
Ying Wang6feb6d52014-04-17 10:03:35 -0700277my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800278my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CONLYFLAGS)
Ying Wang6feb6d52014-04-17 10:03:35 -0700279my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS)
280my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LDFLAGS)
281my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Ying Wang824344a2014-05-27 13:03:36 -0700282endif # my_clang
Logan Chiene6f65432013-12-10 19:07:41 +0800283
284$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_C_INCLUDES := $(my_host_c_includes)
285$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800286$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CONLYFLAGS := $(my_host_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800287$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags)
288$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags)
289endif # LOCAL_IS_HOST_MODULE
Ying Wang1a081002010-07-13 14:55:47 -0700290
Dan Albert43e128a2015-01-23 16:12:57 -0800291# To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and
292# build with NATIVE_COVERAGE=true in your enviornment. Note that the build
293# system is not sensitive to changes to NATIVE_COVERAGE, so you should do a
294# clean build of your module after toggling it.
295ifeq ($(NATIVE_COVERAGE),true)
296 ifeq ($(my_native_coverage),true)
Dan Albert343ed672015-01-25 16:20:57 -0800297 # Note that clang coverage doesn't play nicely with acov out of the box.
298 # Clang apparently generates .gcno files that aren't compatible with
299 # gcov-4.8. This can be solved by installing gcc-4.6 and invoking lcov
300 # with `--gcov-tool /usr/bin/gcov-4.6`.
301 #
302 # http://stackoverflow.com/questions/17758126/clang-code-coverage-invalid-output
Dan Albert2c03e042015-01-24 15:14:35 -0800303 my_cflags += --coverage -O0
Dan Albert343ed672015-01-25 16:20:57 -0800304 my_ldflags += --coverage
Dan Albert43e128a2015-01-23 16:12:57 -0800305 endif
306else
307 my_native_coverage := false
308endif
309
Ying Wang1a081002010-07-13 14:55:47 -0700310###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800311## Define PRIVATE_ variables used by multiple module types
312###########################################################
313$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700314 $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800315
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800316ifeq ($(strip $(WITH_SYNTAX_CHECK)),)
317 LOCAL_NO_SYNTAX_CHECK := true
318endif
319
Andrew Hsieh906cb782013-09-10 17:37:14 +0800320ifeq ($(strip $(WITH_STATIC_ANALYZER)),)
321 LOCAL_NO_STATIC_ANALYZER := true
322endif
323
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800324ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
325 my_syntax_arch := host
326else
Ying Wang6ef65192014-01-15 16:02:16 -0800327 my_syntax_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800328endif
329
Ying Wang6ef65192014-01-15 16:02:16 -0800330ifeq ($(strip $(my_cc)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700331 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800332 my_cc := $(CLANG)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400333 else
Ying Wang6ef65192014-01-15 16:02:16 -0800334 my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400335 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800336endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800337ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800338 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800339else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800340ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800341 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-syntax $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800342endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800343endif
Ying Wang6ef65192014-01-15 16:02:16 -0800344$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800345
Ying Wang6ef65192014-01-15 16:02:16 -0800346ifeq ($(strip $(my_cxx)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700347 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800348 my_cxx := $(CLANG_CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400349 else
Ying Wang6ef65192014-01-15 16:02:16 -0800350 my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400351 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800352endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800353ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800354 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-analyzer $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800355else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800356ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800357 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-syntax $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800358endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800359endif
Ying Wang6ef65192014-01-15 16:02:16 -0800360$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(my_cxx)
Dan Albertb6bb71b2014-08-05 14:44:41 -0700361$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800362
363# TODO: support a mix of standard extensions so that this isn't necessary
364LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION))
365ifeq ($(LOCAL_CPP_EXTENSION),)
366 LOCAL_CPP_EXTENSION := .cpp
367endif
368$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPP_EXTENSION := $(LOCAL_CPP_EXTENSION)
369
370# Certain modules like libdl have to have symbols resolved at runtime and blow
371# up if --no-undefined is passed to the linker.
372ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),)
Dan Albertb58fb4a2014-11-14 17:15:00 -0800373ifeq ($(my_allow_undefined_symbols),)
Ying Wang6ef65192014-01-15 16:02:16 -0800374 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)NO_UNDEFINED_LDFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800375endif
376endif
377
Ying Wangfcdabd42011-04-25 14:22:41 -0700378ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES))
379$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true
380else
381$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES :=
382endif
383
The Android Open Source Project88b60792009-03-03 19:28:42 -0800384###########################################################
385## Define arm-vs-thumb-mode flags.
386###########################################################
387LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE))
Colin Cross6e087a32014-01-22 17:36:05 -0800388ifeq ($(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800389arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm)
390normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb)
391
Dave Bort95282482009-04-23 18:44:55 -0700392# Read the values from something like TARGET_arm_CFLAGS or
393# TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't
394# actually used (although they are usually empty).
Ying Wang6ef65192014-01-15 16:02:16 -0800395arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS)
396normal_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(normal_objects_mode)_CFLAGS)
Dan Albertdb905e72014-08-18 11:14:38 -0700397ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800398arm_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(arm_objects_cflags))
399normal_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(normal_objects_cflags))
Evgeniy Stepanovf50f4c52012-04-05 11:44:37 +0400400endif
401
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800402else
403arm_objects_mode :=
404normal_objects_mode :=
405arm_objects_cflags :=
406normal_objects_cflags :=
407endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800408
409###########################################################
410## Define per-module debugging flags. Users can turn on
411## debugging for a particular module by setting DEBUG_MODULE_ModuleName
412## to a non-empty value in their environment or buildspec.mk,
413## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the
414## debug flags that they want to use.
415###########################################################
416ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE))
417 debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS)
418else
419 debug_cflags :=
420endif
421
Tim Murraya7aa8002012-10-29 16:06:00 -0700422####################################################
423## Compile RenderScript with reflected C++
424####################################################
425
Ying Wangb8e01852014-01-23 15:09:04 -0800426renderscript_sources := $(filter %.rs %.fs,$(my_src_files))
Tim Murraya7aa8002012-10-29 16:06:00 -0700427
428ifneq (,$(renderscript_sources))
429
430renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
431RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp
432renderscript_intermediate := $(intermediates)/renderscript
433
434ifeq ($(LOCAL_RENDERSCRIPT_CC),)
435LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
436endif
437
438# Turn on all warnings and warnings as errors for RS compiles.
439# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
440renderscript_flags := -Wall -Werror
441renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
Ying Wangacaada12014-09-10 16:11:41 -0700442# -m32 or -m64
443renderscript_flags += -m$(my_32_64_bit_suffix)
Tim Murrayf0020c62014-09-10 15:11:01 -0700444
Ying Wang6ef65192014-01-15 16:02:16 -0800445renderscript_includes := \
Tim Murraya7aa8002012-10-29 16:06:00 -0700446 $(TOPDIR)external/clang/lib/Headers \
447 $(TOPDIR)frameworks/rs/scriptc \
448 $(LOCAL_RENDERSCRIPT_INCLUDES)
449
450ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
Ying Wang6ef65192014-01-15 16:02:16 -0800451renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
Tim Murraya7aa8002012-10-29 16:06:00 -0700452endif
453
Ying Wangb9319562015-04-03 16:15:28 -0700454bc_dep_files := $(addprefix $(renderscript_intermediate)/, \
455 $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
456
Ying Wang6ef65192014-01-15 16:02:16 -0800457$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes)
Tim Murraya7aa8002012-10-29 16:06:00 -0700458$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
459$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
460$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
461$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate)
Ying Wangb9319562015-04-03 16:15:28 -0700462$(RenderScript_file_stamp): PRIVATE_DEP_FILES := $(bc_dep_files)
Tim Murraya7aa8002012-10-29 16:06:00 -0700463$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
464 $(transform-renderscripts-to-cpp-and-bc)
465
Ying Wangb9319562015-04-03 16:15:28 -0700466# include the dependency files (.d/.P) generated by llvm-rs-cc.
467-include $(bc_dep_files:%.d=%.P)
Tim Murraya7aa8002012-10-29 16:06:00 -0700468
469LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
470
471rs_generated_cpps := $(addprefix \
472 $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \
473 $(notdir $(renderscript_sources)))))
474
Stephen Hines8ff92522014-06-06 12:51:47 -0700475# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Tim Murraya7aa8002012-10-29 16:06:00 -0700476$(rs_generated_cpps) : $(RenderScript_file_stamp)
Ying Wang81ab8332014-05-28 16:17:09 -0700477 @echo "Updated RS generated cpp file $@."
Ying Wange25b3982015-02-26 18:47:21 -0800478 $(hide) touch $@
Tim Murraya7aa8002012-10-29 16:06:00 -0700479
Ying Wang6ef65192014-01-15 16:02:16 -0800480my_c_includes += $(renderscript_intermediate)
481my_generated_sources += $(rs_generated_cpps)
Tim Murraya7aa8002012-10-29 16:06:00 -0700482
483endif
484
485
The Android Open Source Project88b60792009-03-03 19:28:42 -0800486###########################################################
487## Stuff source generated from one-off tools
488###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800489$(my_generated_sources): PRIVATE_MODULE := $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800490
Colin Crossd8262642014-01-24 23:17:21 -0800491my_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 -0800492
Colin Crossd8262642014-01-24 23:17:21 -0800493$(my_gen_sources_copy): $(intermediates)/% : $(generated_sources_dir)/% | $(ACP)
494 @echo "Copy: $@"
495 $(copy-file-to-target)
496
497my_generated_sources := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(my_generated_sources))
498
499ALL_GENERATED_SOURCES += $(my_generated_sources)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800500
501###########################################################
Wink Saville042d4dc2014-05-06 15:45:57 -0700502# PROTOC transforms
503###########################################################
504
505proto_sources := $(filter %.proto,$(LOCAL_SRC_FILES))
506
Wink Saville597cfdb2014-06-25 19:48:51 -0700507proto_generated_objects :=
508proto_generated_headers :=
509nanopb_c_generated_objects :=
510nanopb_c_generated_headers :=
511ifeq (,$(filter nanopb-c nanopb-c-enable_malloc, $(LOCAL_PROTOC_OPTIMIZE_TYPE)))
Wink Saville042d4dc2014-05-06 15:45:57 -0700512
513###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700514## Compile the .proto files to .cc and then to .o
515###########################################################
Ying Wangb8e01852014-01-23 15:09:04 -0800516proto_sources := $(filter %.proto,$(my_src_files))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700517proto_generated_objects :=
518proto_generated_headers :=
519ifneq ($(proto_sources),)
520proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
Ying Wangead89442014-02-25 11:18:40 -0800521proto_generated_cc_sources_dir := $(generated_sources_dir)/proto
Ying Wanga5fc87a2010-11-02 18:43:16 -0700522proto_generated_cc_sources := $(addprefix $(proto_generated_cc_sources_dir)/, \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700523 $(patsubst %.proto,%.pb.cc,$(proto_sources_fullpath)))
Ying Wangead89442014-02-25 11:18:40 -0800524proto_generated_headers := $(patsubst %.pb.cc,%.pb.h, $(proto_generated_cc_sources))
525proto_generated_obj_dir := $(intermediates)/proto
526proto_generated_objects := $(addprefix $(proto_generated_obj_dir)/, \
527 $(patsubst %.proto,%.pb.o,$(proto_sources_fullpath)))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700528
Ying Wang49085952014-05-06 13:03:32 -0700529# Auto-export the generated proto source dir.
530LOCAL_EXPORT_C_INCLUDE_DIRS += $(proto_generated_cc_sources_dir)
531
Ying Wangead89442014-02-25 11:18:40 -0800532# Ensure the transform-proto-to-cc rule is only defined once in multilib build.
533ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined
Ying Wanga5fc87a2010-11-02 18:43:16 -0700534$(proto_generated_cc_sources): PRIVATE_PROTO_INCLUDES := $(TOP)
535$(proto_generated_cc_sources): PRIVATE_PROTO_CC_OUTPUT_DIR := $(proto_generated_cc_sources_dir)
Ying Wang33c0d952010-11-05 11:30:58 -0700536$(proto_generated_cc_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700537$(proto_generated_cc_sources): $(proto_generated_cc_sources_dir)/%.pb.cc: %.proto $(PROTOC)
538 $(transform-proto-to-cc)
539
Stephen Hines8ff92522014-06-06 12:51:47 -0700540# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Ying Wanga5fc87a2010-11-02 18:43:16 -0700541$(proto_generated_headers): $(proto_generated_cc_sources_dir)/%.pb.h: $(proto_generated_cc_sources_dir)/%.pb.cc
Ying Wang81ab8332014-05-28 16:17:09 -0700542 @echo "Updated header file $@."
Ying Wange25b3982015-02-26 18:47:21 -0800543 $(hide) touch $@
Ying Wanga5fc87a2010-11-02 18:43:16 -0700544
Ying Wangead89442014-02-25 11:18:40 -0800545$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true
546endif # transform-proto-to-cc rule included only once
547
Ying Wang022a7b32012-06-13 11:38:10 -0700548$(proto_generated_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
549$(proto_generated_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wangead89442014-02-25 11:18:40 -0800550$(proto_generated_objects): $(proto_generated_obj_dir)/%.o: $(proto_generated_cc_sources_dir)/%.cc $(proto_generated_headers)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700551 $(transform-$(PRIVATE_HOST)cpp-to-o)
552-include $(proto_generated_objects:%.o=%.P)
553
Ying Wang6ef65192014-01-15 16:02:16 -0800554my_c_includes += external/protobuf/src $(proto_generated_cc_sources_dir)
555my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI
Ying Wanga5fc87a2010-11-02 18:43:16 -0700556ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full)
Dan Albertc3031c72014-11-11 10:42:17 -0800557 ifdef LOCAL_SDK_VERSION
558 my_static_libraries += libprotobuf-cpp-full
559 else
560 my_shared_libraries += libprotobuf-cpp-full
561 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700562else
Dan Albertc3031c72014-11-11 10:42:17 -0800563 ifdef LOCAL_SDK_VERSION
564 my_static_libraries += libprotobuf-cpp-lite
565 else
566 my_shared_libraries += libprotobuf-cpp-lite
567 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700568endif
Ying Wangead89442014-02-25 11:18:40 -0800569endif # $(proto_sources) non-empty
Ying Wanga5fc87a2010-11-02 18:43:16 -0700570
571
Wink Saville042d4dc2014-05-06 15:45:57 -0700572else
573
574###########################################################
Wink Saville597cfdb2014-06-25 19:48:51 -0700575## Compile the .proto files to .c from nanopb-c and then to .o
Wink Saville042d4dc2014-05-06 15:45:57 -0700576###########################################################
Wink Saville042d4dc2014-05-06 15:45:57 -0700577ifneq ($(proto_sources),)
578nanopb_c_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
579nanopb_c_generated_sources_dir := $(intermediates)/proto
580nanopb_c_generated_sources := $(addprefix $(nanopb_c_generated_sources_dir)/, \
581 $(patsubst %.proto,%.pb.c,$(nanopb_c_sources_fullpath)))
582nanopb_c_generated_objects := $(patsubst %.c,%.o, $(nanopb_c_generated_sources))
583
584# Auto-export the generated proto source dir.
585LOCAL_EXPORT_C_INCLUDE_DIRS += $(nanopb_c_generated_sources_dir)
Wink Saville042d4dc2014-05-06 15:45:57 -0700586
587$(nanopb_c_generated_sources): PRIVATE_NANOPB_C_INCLUDES := $(TOP)
588$(nanopb_c_generated_sources): PRIVATE_NANOPB_C_OUTPUT_DIR := $(nanopb_c_generated_sources_dir)
589$(nanopb_c_generated_sources): PRIVATE_NANOPB_C_FLAGS := $(LOCAL_PROTOC_FLAGS)
590
591$(nanopb_c_generated_sources): $(nanopb_c_generated_sources_dir)/%.pb.c: %.proto $(PROTOC)
592 $(transform-nanopb_c-to-c)
593
594nanopb_c_generated_headers := $(patsubst %.pb.c,%.pb.h, $(nanopb_c_generated_sources))
595$(nanopb_c_generated_headers): $(nanopb_c_generated_sources_dir)/%.pb.h: $(nanopb_c_generated_sources_dir)/%.pb.c
596
597$(nanopb_c_generated_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
598$(nanopb_c_generated_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Wink Saville597cfdb2014-06-25 19:48:51 -0700599$(nanopb_c_generated_objects): $(nanopb_c_generated_sources_dir)/%.o: $(nanopb_c_generated_sources_dir)/%.c $(nanopb_c_generated_headers)
600 $(transform-$(PRIVATE_HOST)c-to-o)
Wink Saville042d4dc2014-05-06 15:45:57 -0700601-include $(nanopb_c_generated_objects:%.o=%.P)
602
603LOCAL_C_INCLUDES += external/nanopb-c $(dir $(nanopb_c_generated_headers))
Wink Saville597cfdb2014-06-25 19:48:51 -0700604ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c-enable_malloc)
605LOCAL_STATIC_LIBRARIES += libnanopb-c-2.8.0-enable_malloc
606else
Wink Saville042d4dc2014-05-06 15:45:57 -0700607LOCAL_STATIC_LIBRARIES += libnanopb-c-2.8.0
608endif
Wink Saville597cfdb2014-06-25 19:48:51 -0700609endif
Wink Saville042d4dc2014-05-06 15:45:57 -0700610
611endif
612
Ying Wanga5fc87a2010-11-02 18:43:16 -0700613###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000614## YACC: Compile .y and .yy files to .cpp and the to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800615###########################################################
616
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000617y_yacc_sources := $(filter %.y,$(my_src_files))
618y_yacc_cpps := $(addprefix \
619 $(intermediates)/,$(y_yacc_sources:.y=$(LOCAL_CPP_EXTENSION)))
620
621yy_yacc_sources := $(filter %.yy,$(my_src_files))
622yy_yacc_cpps := $(addprefix \
623 $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION)))
624
625yacc_cpps := $(y_yacc_cpps) $(yy_yacc_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800626yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h)
627yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o)
628
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000629ifneq ($(strip $(y_yacc_cpps)),)
630$(y_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700631 $(TOPDIR)$(LOCAL_PATH)/%.y \
Dan Albert954b5bd2014-11-08 22:20:03 -0800632 $(lex_cpps) $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800633 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
634$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000635endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800636
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000637ifneq ($(strip $(yy_yacc_cpps)),)
638$(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
639 $(TOPDIR)$(LOCAL_PATH)/%.yy \
Dan Albert954b5bd2014-11-08 22:20:03 -0800640 $(lex_cpps) $(my_additional_dependencies)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000641 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
642$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
643endif
644
645ifneq ($(strip $(yacc_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800646$(yacc_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
647$(yacc_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
648$(yacc_objects): $(intermediates)/%.o: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
649 $(transform-$(PRIVATE_HOST)cpp-to-o)
650endif
651
652###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000653## LEX: Compile .l and .ll files to .cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800654###########################################################
655
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000656l_lex_sources := $(filter %.l,$(my_src_files))
657l_lex_cpps := $(addprefix \
658 $(intermediates)/,$(l_lex_sources:.l=$(LOCAL_CPP_EXTENSION)))
659
660ll_lex_sources := $(filter %.ll,$(my_src_files))
661ll_lex_cpps := $(addprefix \
662 $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION)))
663
664lex_cpps := $(l_lex_cpps) $(ll_lex_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800665lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o)
666
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000667ifneq ($(strip $(l_lex_cpps)),)
668$(l_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700669 $(TOPDIR)$(LOCAL_PATH)/%.l
The Android Open Source Project88b60792009-03-03 19:28:42 -0800670 $(transform-l-to-cpp)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000671endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800672
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000673ifneq ($(strip $(ll_lex_cpps)),)
674$(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
675 $(TOPDIR)$(LOCAL_PATH)/%.ll
676 $(transform-l-to-cpp)
677endif
678
679ifneq ($(strip $(lex_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800680$(lex_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
681$(lex_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
682$(lex_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700683 $(intermediates)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800684 $(my_additional_dependencies) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700685 $(yacc_headers)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800686 $(transform-$(PRIVATE_HOST)cpp-to-o)
687endif
688
689###########################################################
690## C++: Compile .cpp files to .o.
691###########################################################
692
Jeff Browne33ba4c2011-07-11 22:11:46 -0700693# we also do this on host modules, even though
The Android Open Source Project88b60792009-03-03 19:28:42 -0800694# it's not really arm, because there are files that are shared.
Ying Wangfb22a422015-03-10 18:03:11 -0700695cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(my_src_files)))
696dotdot_arm_sources := $(filter ../%,$(cpp_arm_sources))
697cpp_arm_sources := $(filter-out ../%,$(cpp_arm_sources))
698cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800699
Ying Wangfb22a422015-03-10 18:03:11 -0700700# For source files starting with ../, we remove all the ../ in the object file path,
701# to avoid object file escaping the intermediate directory.
702dotdot_arm_objects :=
703$(foreach s,$(dotdot_arm_sources),\
704 $(eval $(call compile-dotdot-cpp-file,$(s),\
705 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
706 dotdot_arm_objects)))
707
708dotdot_sources := $(filter ../%$(LOCAL_CPP_EXTENSION),$(my_src_files))
709dotdot_objects :=
710$(foreach s,$(dotdot_sources),\
711 $(eval $(call compile-dotdot-cpp-file,$(s),\
712 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
713 dotdot_objects)))
714
715cpp_normal_sources := $(filter-out ../%,$(filter %$(LOCAL_CPP_EXTENSION),$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800716cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o))
717
Ying Wangfb22a422015-03-10 18:03:11 -0700718$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
719$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
720$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
721$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800722
723cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects)
724
725ifneq ($(strip $(cpp_objects)),)
726$(cpp_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700727 $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800728 $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800729 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800730 $(transform-$(PRIVATE_HOST)cpp-to-o)
731-include $(cpp_objects:%.o=%.P)
732endif
733
Ying Wangfb22a422015-03-10 18:03:11 -0700734cpp_objects += $(dotdot_arm_objects) $(dotdot_objects)
735
The Android Open Source Project88b60792009-03-03 19:28:42 -0800736###########################################################
737## C++: Compile generated .cpp files to .o.
738###########################################################
739
Ying Wangec6d6262014-01-16 16:21:03 -0800740gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800741gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o)
742
743ifneq ($(strip $(gen_cpp_objects)),)
744# Compile all generated files as thumb.
745# TODO: support compiling certain generated files as arm.
746$(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
747$(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400748$(gen_cpp_objects): $(intermediates)/%.o: \
749 $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800750 $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800751 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800752 $(transform-$(PRIVATE_HOST)cpp-to-o)
753-include $(gen_cpp_objects:%.o=%.P)
754endif
755
756###########################################################
757## S: Compile generated .S and .s files to .o.
758###########################################################
759
Ying Wangec6d6262014-01-16 16:21:03 -0800760gen_S_sources := $(filter %.S,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800761gen_S_objects := $(gen_S_sources:%.S=%.o)
762
763ifneq ($(strip $(gen_S_sources)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400764$(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800765 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800766 $(transform-$(PRIVATE_HOST)s-to-o)
767-include $(gen_S_objects:%.o=%.P)
768endif
769
Ying Wangec6d6262014-01-16 16:21:03 -0800770gen_s_sources := $(filter %.s,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800771gen_s_objects := $(gen_s_sources:%.s=%.o)
772
773ifneq ($(strip $(gen_s_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400774$(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800775 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800776 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
777-include $(gen_s_objects:%.o=%.P)
778endif
779
780gen_asm_objects := $(gen_S_objects) $(gen_s_objects)
781
782###########################################################
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000783## o: Include generated .o files in output.
784###########################################################
785
Ying Wangec6d6262014-01-16 16:21:03 -0800786gen_o_objects := $(filter %.o,$(my_generated_sources))
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000787
788###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800789## C: Compile .c files to .o.
790###########################################################
791
Ying Wangfb22a422015-03-10 18:03:11 -0700792c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files)))
793dotdot_arm_sources := $(filter ../%,$(c_arm_sources))
794c_arm_sources := $(filter-out ../%,$(c_arm_sources))
795c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800796
Ying Wangfb22a422015-03-10 18:03:11 -0700797# For source files starting with ../, we remove all the ../ in the object file path,
798# to avoid object file escaping the intermediate directory.
799dotdot_arm_objects :=
800$(foreach s,$(dotdot_arm_sources),\
801 $(eval $(call compile-dotdot-c-file,$(s),\
802 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
803 dotdot_arm_objects)))
804
805dotdot_sources := $(filter ../%.c, $(my_src_files))
806dotdot_objects :=
807$(foreach s, $(dotdot_sources),\
808 $(eval $(call compile-dotdot-c-file,$(s),\
809 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
810 dotdot_objects)))
811
812c_normal_sources := $(filter-out ../%,$(filter %.c,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800813c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o))
814
Ying Wangfb22a422015-03-10 18:03:11 -0700815$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
816$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
817$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
818$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800819
820c_objects := $(c_arm_objects) $(c_normal_objects)
821
822ifneq ($(strip $(c_objects)),)
Wink Saville597cfdb2014-06-25 19:48:51 -0700823$(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c $(yacc_cpps) $(proto_generated_headers) $(nanopb_c_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800824 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800825 $(transform-$(PRIVATE_HOST)c-to-o)
826-include $(c_objects:%.o=%.P)
827endif
828
Ying Wangfb22a422015-03-10 18:03:11 -0700829c_objects += $(dotdot_arm_objects) $(dotdot_objects)
830
The Android Open Source Project88b60792009-03-03 19:28:42 -0800831###########################################################
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700832## C: Compile generated .c files to .o.
833###########################################################
834
Ying Wangec6d6262014-01-16 16:21:03 -0800835gen_c_sources := $(filter %.c,$(my_generated_sources))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700836gen_c_objects := $(gen_c_sources:%.c=%.o)
837
838ifneq ($(strip $(gen_c_objects)),)
839# Compile all generated files as thumb.
840# TODO: support compiling certain generated files as arm.
841$(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
842$(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Wink Saville597cfdb2014-06-25 19:48:51 -0700843$(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) $(nanopb_c_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800844 $(my_additional_dependencies)
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700845 $(transform-$(PRIVATE_HOST)c-to-o)
846-include $(gen_c_objects:%.o=%.P)
847endif
848
849###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200850## ObjC: Compile .m files to .o
851###########################################################
852
Ying Wangb8e01852014-01-23 15:09:04 -0800853objc_sources := $(filter %.m,$(my_src_files))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200854objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o))
855
856ifneq ($(strip $(objc_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400857$(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800858 $(my_additional_dependencies)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200859 $(transform-$(PRIVATE_HOST)m-to-o)
860-include $(objc_objects:%.o=%.P)
861endif
862
863###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800864## AS: Compile .S files to .o.
865###########################################################
866
Ying Wangb8e01852014-01-23 15:09:04 -0800867asm_sources_S := $(filter %.S,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -0700868dotdot_sources := $(filter ../%,$(asm_sources_S))
869asm_sources_S := $(filter-out ../%,$(asm_sources_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800870asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o))
871
Ying Wangfb22a422015-03-10 18:03:11 -0700872dotdot_objects_S :=
873$(foreach s,$(dotdot_sources),\
874 $(eval $(call compile-dotdot-s-file,$(s),\
875 $(my_additional_dependencies),\
876 dotdot_objects_S)))
877
The Android Open Source Project88b60792009-03-03 19:28:42 -0800878ifneq ($(strip $(asm_objects_S)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400879$(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800880 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800881 $(transform-$(PRIVATE_HOST)s-to-o)
882-include $(asm_objects_S:%.o=%.P)
883endif
884
Ying Wangb8e01852014-01-23 15:09:04 -0800885asm_sources_s := $(filter %.s,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -0700886dotdot_sources := $(filter ../%,$(asm_sources_s))
887asm_sources_s := $(filter-out ../%,$(asm_sources_s))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800888asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o))
889
Ying Wangfb22a422015-03-10 18:03:11 -0700890dotdot_objects_s :=
891$(foreach s,$(dotdot_sources),\
892 $(eval $(call compile-dotdot-s-file-no-deps,$(s),\
893 $(my_additional_dependencies),\
894 dotdot_objects_s)))
895
The Android Open Source Project88b60792009-03-03 19:28:42 -0800896ifneq ($(strip $(asm_objects_s)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400897$(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800898 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800899 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800900endif
901
Ying Wangfb22a422015-03-10 18:03:11 -0700902asm_objects := $(dotdot_objects_S) $(dotdot_objects_s) $(asm_objects_S) $(asm_objects_s)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800903
904
Ying Wangfe1e5c32015-03-09 18:57:40 -0700905# .asm for x86/x86_64 needs to be compiled with yasm.
Ying Wang7b913ce2014-06-05 19:05:47 -0700906asm_sources_asm := $(filter %.asm,$(my_src_files))
907ifneq ($(strip $(asm_sources_asm)),)
908asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o))
909$(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \
Dan Albert954b5bd2014-11-08 22:20:03 -0800910 $(my_additional_dependencies)
Ying Wang7b913ce2014-06-05 19:05:47 -0700911 $(transform-asm-to-o)
912
913asm_objects += $(asm_objects_asm)
914endif
Ying Wang7b913ce2014-06-05 19:05:47 -0700915
Jeff Davidson680f0712015-01-08 18:25:30 -0800916
917##########################################################
918## Set up installed module dependency
919## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for
920## they may cusomize their install path with LOCAL_MODULE_PATH
921##########################################################
922# Get the list of INSTALLED libraries as module names.
923ifdef LOCAL_SDK_VERSION
924 installed_shared_library_module_names := \
925 $(my_shared_libraries)
926else
927 installed_shared_library_module_names := \
928 $(my_shared_libraries) $(my_system_shared_libraries)
929endif
930
931# The real dependency will be added after all Android.mks are loaded and the install paths
932# of the shared libraries are determined.
933ifdef LOCAL_INSTALLED_MODULE
934ifdef installed_shared_library_module_names
935$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
936 $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names)))
937endif
938endif
939
940
Ying Wang5f074802011-11-08 09:31:21 -0800941####################################################
942## Import includes
943####################################################
944import_includes := $(intermediates)/import_includes
945import_includes_deps := $(strip \
946 $(foreach l, $(installed_shared_library_module_names), \
Ying Wang6ef65192014-01-15 16:02:16 -0800947 $(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 -0800948 $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \
Ying Wang6ef65192014-01-15 16:02:16 -0800949 $(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 -0800950$(import_includes): PRIVATE_IMPORT_EXPORT_INCLUDES := $(import_includes_deps)
951$(import_includes) : $(LOCAL_MODULE_MAKEFILE) $(import_includes_deps)
Ying Wang5f074802011-11-08 09:31:21 -0800952 @echo Import includes file: $@
953 $(hide) mkdir -p $(dir $@) && rm -f $@
954ifdef import_includes_deps
Ying Wang14d02a32015-01-22 15:44:04 -0800955 $(hide) for f in $(PRIVATE_IMPORT_EXPORT_INCLUDES); do \
Ying Wang5f074802011-11-08 09:31:21 -0800956 cat $$f >> $@; \
957 done
958else
959 $(hide) touch $@
960endif
961
The Android Open Source Project88b60792009-03-03 19:28:42 -0800962###########################################################
963## Common object handling.
964###########################################################
965
966# some rules depend on asm_objects being first. If your code depends on
967# being first, it's reasonable to require it to be assembly
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100968normal_objects := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700969 $(asm_objects) \
970 $(cpp_objects) \
971 $(gen_cpp_objects) \
972 $(gen_asm_objects) \
973 $(c_objects) \
974 $(gen_c_objects) \
975 $(objc_objects) \
976 $(yacc_objects) \
977 $(lex_objects) \
Wink Saville042d4dc2014-05-06 15:45:57 -0700978 $(nanopb_c_generated_objects) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700979 $(proto_generated_objects) \
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100980 $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES))
981
982all_objects := $(normal_objects) $(gen_o_objects)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800983
Colin Cross2d206702014-02-13 13:41:52 -0800984my_c_includes += $(TOPDIR)$(LOCAL_PATH) $(intermediates) $(generated_sources_dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800985
Ying Wang848020f2012-08-14 10:13:16 -0700986ifndef LOCAL_SDK_VERSION
Ying Wang6ef65192014-01-15 16:02:16 -0800987 my_c_includes += $(JNI_H_INCLUDE)
Ying Wangbce4b752010-07-22 15:51:56 -0700988endif
989
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100990# all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES;
991# use normal_objects here to avoid creating circular dependencies. This assumes
992# that custom build rules which generate .o files don't consume other generated
993# sources as input (or if they do they take care of that dependency themselves).
Ying Wangec6d6262014-01-16 16:21:03 -0800994$(normal_objects) : | $(my_generated_sources)
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100995$(all_objects) : | $(import_includes)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800996ALL_C_CPP_ETC_OBJECTS += $(all_objects)
997
The Android Open Source Project88b60792009-03-03 19:28:42 -0800998
999###########################################################
1000# Standard library handling.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001001###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001002
1003###########################################################
1004# The list of libraries that this module will link against are in
1005# these variables. Each is a list of bare module names like "libc libm".
1006#
1007# LOCAL_SHARED_LIBRARIES
1008# LOCAL_STATIC_LIBRARIES
1009# LOCAL_WHOLE_STATIC_LIBRARIES
1010#
1011# We need to convert the bare names into the dependencies that
1012# we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE.
1013# LOCAL_BUILT_MODULE should depend on the BUILT versions of the
1014# libraries, so that simply building this module doesn't force
1015# an install of a library. Similarly, LOCAL_INSTALLED_MODULE
1016# should depend on the INSTALLED versions of the libraries so
1017# that they get installed when this module does.
1018###########################################################
1019# NOTE:
1020# WHOLE_STATIC_LIBRARIES are libraries that are pulled into the
1021# module without leaving anything out, which is useful for turning
1022# a collection of .a files into a .so file. Linking against a
1023# normal STATIC_LIBRARY will only pull in code/symbols that are
1024# referenced by the module. (see gcc/ld's --whole-archive option)
1025###########################################################
1026
1027# Get the list of BUILT libraries, which are under
1028# various intermediates directories.
1029so_suffix := $($(my_prefix)SHLIB_SUFFIX)
1030a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX)
1031
Ying Wang848020f2012-08-14 10:13:16 -07001032ifdef LOCAL_SDK_VERSION
The Android Open Source Project88b60792009-03-03 19:28:42 -08001033built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001034 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001035 $(addsuffix $(so_suffix), \
Ying Wang6ef65192014-01-15 16:02:16 -08001036 $(my_shared_libraries)))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001037
Ying Wangd8d37212014-03-21 16:17:04 -07001038# Add the NDK libraries to the built module dependency
Ying Wangcce4c972011-03-03 18:53:53 -08001039my_system_shared_libraries_fullpath := \
1040 $(my_ndk_stl_shared_lib_fullpath) \
Andrew Hsieh140761af02014-04-25 23:47:10 -07001041 $(addprefix $(my_ndk_sysroot_lib)/, \
Ying Wangd8d37212014-03-21 16:17:04 -07001042 $(addsuffix $(so_suffix), $(my_system_shared_libraries)))
Ying Wang1a081002010-07-13 14:55:47 -07001043
1044built_shared_libraries += $(my_system_shared_libraries_fullpath)
Ying Wang1a081002010-07-13 14:55:47 -07001045else
Ying Wang1a081002010-07-13 14:55:47 -07001046built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001047 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
Ying Wang1a081002010-07-13 14:55:47 -07001048 $(addsuffix $(so_suffix), \
Ying Wangd8d37212014-03-21 16:17:04 -07001049 $(installed_shared_library_module_names)))
Ying Wang1a081002010-07-13 14:55:47 -07001050endif
1051
The Android Open Source Project88b60792009-03-03 19:28:42 -08001052built_static_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001053 $(foreach lib,$(my_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001054 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -08001055 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 -08001056
Ying Wang848020f2012-08-14 10:13:16 -07001057ifdef LOCAL_SDK_VERSION
Ying Wangcce4c972011-03-03 18:53:53 -08001058built_static_libraries += $(my_ndk_stl_static_lib)
1059endif
1060
The Android Open Source Project88b60792009-03-03 19:28:42 -08001061built_whole_libraries := \
Colin Cross90353fe2014-02-04 14:53:25 -08001062 $(foreach lib,$(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001063 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -08001064 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 -08001065
The Android Open Source Project88b60792009-03-03 19:28:42 -08001066# We don't care about installed static libraries, since the
1067# libraries have already been linked into the module at that point.
1068# We do, however, care about the NOTICE files for any static
Steve Blockd14d3b42012-03-01 11:34:41 +00001069# libraries that we use. (see notice_files.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001070
1071installed_static_library_notice_file_targets := \
Colin Cross90353fe2014-02-04 14:53:25 -08001072 $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001073 NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib))
1074
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001075# Default is -fno-rtti.
Doug Kwane3c3c6d2011-06-07 10:55:48 -07001076ifeq ($(strip $(LOCAL_RTTI_FLAG)),)
1077LOCAL_RTTI_FLAG := -fno-rtti
1078endif
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001079
The Android Open Source Project88b60792009-03-03 19:28:42 -08001080###########################################################
1081# Rule-specific variable definitions
1082###########################################################
Logan Chiene6f65432013-12-10 19:07:41 +08001083
Ying Wang824344a2014-05-27 13:03:36 -07001084ifeq ($(my_clang),true)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001085my_cflags += $(LOCAL_CLANG_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -08001086my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS)
Dan Albertd2fa96d2014-11-28 14:00:12 -08001087my_cppflags += $(LOCAL_CLANG_CPPFLAGS)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001088my_asflags += $(LOCAL_CLANG_ASFLAGS)
1089my_ldflags += $(LOCAL_CLANG_LDFLAGS)
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -07001090my_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 -08001091my_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 -07001092my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix))
1093my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix))
1094my_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 -08001095my_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cflags))
1096my_cppflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cppflags))
1097my_asflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_asflags))
1098my_ldflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_ldflags))
Logan Chiene6f65432013-12-10 19:07:41 +08001099endif
1100
Ying Wang45d01432014-10-28 14:50:59 -07001101ifeq ($(my_fdo_build), true)
1102 my_cflags := $(patsubst -Os,-O2,$(my_cflags))
1103 fdo_incompatible_flags := -fno-early-inlining -finline-limit=%
1104 my_cflags := $(filter-out $(fdo_incompatible_flags),$(my_cflags))
Dehao Chen295a6d22014-09-19 10:18:12 -07001105endif
1106
The Android Open Source Project88b60792009-03-03 19:28:42 -08001107$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -08001108$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags)
Stephen Hines15680292014-11-26 00:53:46 -08001109$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(my_conlyflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001110$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags)
1111$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags)
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001112$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001113$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001114$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes)
Ying Wang5f074802011-11-08 09:31:21 -08001115$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes)
Ying Wang6ef65192014-01-15 16:02:16 -08001116$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags)
Dan Albertb05f2ca2014-09-12 14:46:57 -07001117$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs)
Ying Wangb8e01852014-01-23 15:09:04 -08001118$(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 -08001119
1120# this is really the way to get the files onto the command line instead
1121# of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work
1122$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries)
1123$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries)
1124$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries)
1125$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects)
1126
1127###########################################################
1128# Define library dependencies.
1129###########################################################
1130# all_libraries is used for the dependencies on LOCAL_BUILT_MODULE.
1131all_libraries := \
1132 $(built_shared_libraries) \
1133 $(built_static_libraries) \
1134 $(built_whole_libraries)
1135
The Android Open Source Project88b60792009-03-03 19:28:42 -08001136# Also depend on the notice files for any static libraries that
1137# are linked into this module. This will force them to be installed
1138# when this module is.
1139$(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets)
Ying Wang5f074802011-11-08 09:31:21 -08001140
1141###########################################################
1142# Export includes
1143###########################################################
1144export_includes := $(intermediates)/export_includes
1145$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(LOCAL_EXPORT_C_INCLUDE_DIRS)
Ying Wang49085952014-05-06 13:03:32 -07001146# Make sure .pb.h are already generated before any dependent source files get compiled.
Wink Saville042d4dc2014-05-06 15:45:57 -07001147$(export_includes) : $(LOCAL_MODULE_MAKEFILE) $(proto_generated_headers) $(nanopb_c_generated_headers)
Ying Wang5f074802011-11-08 09:31:21 -08001148 @echo Export includes file: $< -- $@
1149 $(hide) mkdir -p $(dir $@) && rm -f $@
1150ifdef LOCAL_EXPORT_C_INCLUDE_DIRS
1151 $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
1152 echo "-I $$d" >> $@; \
1153 done
1154else
1155 $(hide) touch $@
1156endif
Ying Wang616e5962012-04-18 17:35:55 -07001157
1158# Make sure export_includes gets generated when you are running mm/mmm
1159$(LOCAL_BUILT_MODULE) : | $(export_includes)