blob: 852ac466e07069bbf66d7abf502d9b4b5a020d35 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001###########################################################
2## Standard rules for building binary object files from
3## asm/c/cpp/yacc/lex source files.
4##
5## The list of object files is exported in $(all_objects).
6###########################################################
7
Ying Wang1a081002010-07-13 14:55:47 -07008######################################
9## Sanity check for LOCAL_NDK_VERSION
10######################################
11my_ndk_version_root :=
12ifdef LOCAL_NDK_VERSION
13 ifdef LOCAL_IS_HOST_MODULE
14 $(error $(LOCAL_PATH): LOCAL_NDK_VERSION can not be used in host module)
15 endif
16 ifneq ($(filter-out SHARED_LIBRARIES STATIC_LIBRARIES,$(LOCAL_MODULE_CLASS)),)
17 $(error $(LOCAL_PATH): LOCAL_NDK_VERSION can only be used to build target shared/static libraries, \
18 while your module is of class $(LOCAL_MODULE_CLASS))
19 endif
20 ifeq ($(filter $(LOCAL_NDK_VERSION),$(TARGET_AVAILABLE_NDK_VERSIONS)),)
21 $(error $(LOCAL_PATH): Invalid LOCAL_NDK_VERSION '$(LOCAL_NDK_VERSION)' \
22 Choices are $(TARGET_AVAILABLE_NDK_VERSIONS))
23 endif
24 ifndef LOCAL_SDK_VERSION
25 $(error $(LOCAL_PATH): LOCAL_NDK_VERSION must be defined with LOCAL_SDK_VERSION)
26 endif
Ying Wang2f76c6d2011-02-23 10:07:03 -080027 my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/android-ndk-r$(LOCAL_NDK_VERSION)/sources
Ying Wang02c98132010-09-23 17:59:36 -070028 my_ndk_version_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/android-ndk-r$(LOCAL_NDK_VERSION)/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_ARCH)
Ying Wang1a081002010-07-13 14:55:47 -070029 ifeq ($(wildcard $(my_ndk_version_root)),)
30 $(error $(LOCAL_PATH): ndk version root does not exist: $(my_ndk_version_root))
31 endif
Ying Wangcce4c972011-03-03 18:53:53 -080032
33 # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location.
34 # See ndk/docs/CPLUSPLUS-SUPPORT.html
35 my_ndk_stl_include_path :=
36 my_ndk_stl_shared_lib_fullpath :=
37 my_ndk_stl_shared_lib :=
38 my_ndk_stl_static_lib :=
39 ifeq (,$(LOCAL_NDK_STL_VARIANT))
40 LOCAL_NDK_STL_VARIANT := system
41 endif
42 ifneq (1,$(words $(filter system stlport_static stlport_shared gnustl_static, $(LOCAL_NDK_STL_VARIANT))))
43 $(error $(LOCAL_PATH): Unkown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
44 endif
45 ifeq (system,$(LOCAL_NDK_STL_VARIANT))
46 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
47 # for "system" variant, the shared library exists in the system library and -lstdc++ is added by default.
48 else # LOCAL_NDK_STL_VARIANT is not system
49 ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
50 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
51 ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
52 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(TARGET_CPU_ABI)/libstlport_static.a
53 else
54 my_ndk_stl_shared_lib_fullpath := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(TARGET_CPU_ABI)/libstlport_shared.so
55 my_ndk_stl_shared_lib := -lstlport_shared
56 endif
57 else
58 # LOCAL_NDK_STL_VARIANT is gnustl_static
Ying Wangd9020c22011-09-07 14:31:47 -070059 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/libs/$(TARGET_CPU_ABI)/include \
60 $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/include
Ying Wangcce4c972011-03-03 18:53:53 -080061 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/libs/$(TARGET_CPU_ABI)/libstdc++.a
62 endif
63 endif
Ying Wang1a081002010-07-13 14:55:47 -070064endif
65
Ying Wang704c0c92011-09-15 13:50:52 -070066##################################################
67# Compute the dependency of the shared libraries
68##################################################
69# On the target, we compile with -nostdlib, so we must add in the
70# default system shared libraries, unless they have requested not
71# to by supplying a LOCAL_SYSTEM_SHARED_LIBRARIES value. One would
72# supply that, for example, when building libc itself.
73ifdef LOCAL_IS_HOST_MODULE
74 ifeq ($(LOCAL_SYSTEM_SHARED_LIBRARIES),none)
75 LOCAL_SYSTEM_SHARED_LIBRARIES :=
76 endif
77else
78 ifeq ($(LOCAL_SYSTEM_SHARED_LIBRARIES),none)
79 LOCAL_SYSTEM_SHARED_LIBRARIES := $(TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES)
80 endif
81endif
82
83# Logging used to be part of libcutils (target) and libutils (sim);
84# hack modules that use those other libs to also include liblog.
85# All of this complexity is to make sure that liblog only appears
86# once, and appears just before libcutils or libutils on the link
87# line.
88# TODO: remove this hack and change all modules to use liblog
89# when necessary.
90define insert-liblog
91 $(if $(filter liblog,$(1)),$(1), \
92 $(if $(filter libcutils,$(1)), \
93 $(patsubst libcutils,liblog libcutils,$(1)) \
94 , \
95 $(patsubst libutils,liblog libutils,$(1)) \
96 ) \
97 )
98endef
99ifneq (,$(filter libcutils libutils,$(LOCAL_SHARED_LIBRARIES)))
100 LOCAL_SHARED_LIBRARIES := $(call insert-liblog,$(LOCAL_SHARED_LIBRARIES))
101endif
102ifneq (,$(filter libcutils libutils,$(LOCAL_STATIC_LIBRARIES)))
103 LOCAL_STATIC_LIBRARIES := $(call insert-liblog,$(LOCAL_STATIC_LIBRARIES))
104endif
105ifneq (,$(filter libcutils libutils,$(LOCAL_WHOLE_STATIC_LIBRARIES)))
106 LOCAL_WHOLE_STATIC_LIBRARIES := $(call insert-liblog,$(LOCAL_WHOLE_STATIC_LIBRARIES))
107endif
108
109ifdef LOCAL_NDK_VERSION
110 # Get the list of INSTALLED libraries as module names.
111 # We can not compute the full path of the LOCAL_SHARED_LIBRARIES for
112 # they may cusomize their install path with LOCAL_MODULE_PATH
113 installed_shared_library_module_names := \
114 $(LOCAL_SHARED_LIBRARIES)
115else
116 installed_shared_library_module_names := \
117 $(LOCAL_SYSTEM_SHARED_LIBRARIES) $(LOCAL_SHARED_LIBRARIES)
118endif
119# The real dependency will be added after all Android.mks are loaded and the install paths
120# of the shared libraries are determined.
121LOCAL_REQUIRED_MODULES += $(installed_shared_library_module_names)
122
The Android Open Source Project88b60792009-03-03 19:28:42 -0800123#######################################
124include $(BUILD_SYSTEM)/base_rules.mk
125#######################################
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400126
127ifeq ($(strip $(LOCAL_ADDRESS_SANITIZER)),true)
128 LOCAL_CLANG := true
129 LOCAL_CFLAGS += $(ADDRESS_SANITIZER_CONFIG_EXTRA_CFLAGS)
130 LOCAL_LDFLAGS += $(ADDRESS_SANITIZER_CONFIG_EXTRA_LDFLAGS)
131 LOCAL_SHARED_LIBRARIES += $(ADDRESS_SANITIZER_CONFIG_EXTRA_SHARED_LIBRARIES)
132 LOCAL_STATIC_LIBRARIES += $(ADDRESS_SANITIZER_CONFIG_EXTRA_STATIC_LIBRARIES)
133endif
134
Ying Wangdfbe79b2012-03-22 11:26:22 -0700135my_compiler_dependencies :=
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400136ifeq ($(strip $(LOCAL_CLANG)),true)
137 LOCAL_CFLAGS += $(CLANG_CONFIG_EXTRA_CFLAGS)
138 LOCAL_LDFLAGS += $(CLANG_CONFIG_EXTRA_LDFLAGS)
Ying Wangdfbe79b2012-03-22 11:26:22 -0700139 my_compiler_dependencies := $(CLANG) $(CLANG_CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400140endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800141
Jing Yu2dcc8062009-09-21 16:31:50 -0700142####################################################
143## Add FDO flags if FDO is turned on and supported
144####################################################
145ifeq ($(strip $(LOCAL_NO_FDO_SUPPORT)),)
146 LOCAL_CFLAGS += $(TARGET_FDO_CFLAGS)
147 LOCAL_CPPFLAGS += $(TARGET_FDO_CFLAGS)
148 LOCAL_LDFLAGS += $(TARGET_FDO_CFLAGS)
149endif
150
The Android Open Source Project88b60792009-03-03 19:28:42 -0800151###########################################################
Jim Huang20d1ba62010-10-14 16:15:56 +0800152## Explicitly declare assembly-only __ASSEMBLY__ macro for
153## assembly source
154###########################################################
155LOCAL_ASFLAGS += -D__ASSEMBLY__
156
157###########################################################
Ying Wang1a081002010-07-13 14:55:47 -0700158## Define PRIVATE_ variables from global vars
159###########################################################
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400160ifeq ($(strip $(LOCAL_CLANG)),true)
161my_target_global_cflags := $(TARGET_GLOBAL_CLANG_FLAGS)
162else
163my_target_global_cflags := $(TARGET_GLOBAL_CFLAGS)
164endif
165
Ying Wang1a081002010-07-13 14:55:47 -0700166ifdef LOCAL_NDK_VERSION
167my_target_project_includes :=
Evgeniy Stepanova7095e92012-03-30 12:18:52 +0400168my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_version_root)/usr/include
Ying Wang1a081002010-07-13 14:55:47 -0700169# TODO: more reliable way to remove platform stuff.
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400170my_target_global_cflags := $(filter-out -include -I system/%, $(my_target_global_cflags))
Ying Wang1a081002010-07-13 14:55:47 -0700171my_target_global_cppflags := $(filter-out -include -I system/%, $(TARGET_GLOBAL_CPPFLAGS))
172else
173my_target_project_includes := $(TARGET_PROJECT_INCLUDES)
Evgeniy Stepanova7095e92012-03-30 12:18:52 +0400174my_target_c_includes := $(TARGET_C_INCLUDES)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400175my_target_global_cflags := $(my_target_global_cflags)
Ying Wang1a081002010-07-13 14:55:47 -0700176my_target_global_cppflags := $(TARGET_GLOBAL_CPPFLAGS)
Evgeniy Stepanova7095e92012-03-30 12:18:52 +0400177ifeq ($(strip $(LOCAL_CLANG)),true)
178 my_target_c_includes += $(CLANG_CONFIG_EXTRA_TARGET_C_INCLUDES)
179endif
Ying Wang1a081002010-07-13 14:55:47 -0700180endif
181$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes)
Evgeniy Stepanova7095e92012-03-30 12:18:52 +0400182$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes)
Ying Wang1a081002010-07-13 14:55:47 -0700183$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags)
184$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags)
185
186###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800187## Define PRIVATE_ variables used by multiple module types
188###########################################################
189$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700190 $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800191
192ifeq ($(strip $(LOCAL_CC)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400193 ifeq ($(strip $(LOCAL_CLANG)),true)
194 LOCAL_CC := $(CLANG)
195 else
196 LOCAL_CC := $($(my_prefix)CC)
197 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800198endif
199$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(LOCAL_CC)
200
201ifeq ($(strip $(LOCAL_CXX)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400202 ifeq ($(strip $(LOCAL_CLANG)),true)
203 LOCAL_CXX := $(CLANG_CXX)
204 else
205 LOCAL_CXX := $($(my_prefix)CXX)
206 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800207endif
208$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(LOCAL_CXX)
209
210# TODO: support a mix of standard extensions so that this isn't necessary
211LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION))
212ifeq ($(LOCAL_CPP_EXTENSION),)
213 LOCAL_CPP_EXTENSION := .cpp
214endif
215$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPP_EXTENSION := $(LOCAL_CPP_EXTENSION)
216
217# Certain modules like libdl have to have symbols resolved at runtime and blow
218# up if --no-undefined is passed to the linker.
219ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),)
220ifeq ($(strip $(LOCAL_ALLOW_UNDEFINED_SYMBOLS)),)
221 LOCAL_LDFLAGS := $(LOCAL_LDFLAGS) $($(my_prefix)NO_UNDEFINED_LDFLAGS)
222endif
223endif
224
Ying Wangfcdabd42011-04-25 14:22:41 -0700225ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES))
226$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true
227else
228$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES :=
229endif
230
The Android Open Source Project88b60792009-03-03 19:28:42 -0800231###########################################################
232## Define arm-vs-thumb-mode flags.
233###########################################################
234LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE))
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800235ifeq ($(TARGET_ARCH),arm)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800236arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm)
237normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb)
238
Dave Bort95282482009-04-23 18:44:55 -0700239# Read the values from something like TARGET_arm_CFLAGS or
240# TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't
241# actually used (although they are usually empty).
242arm_objects_cflags := $($(my_prefix)$(arm_objects_mode)_CFLAGS)
243normal_objects_cflags := $($(my_prefix)$(normal_objects_mode)_CFLAGS)
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800244else
245arm_objects_mode :=
246normal_objects_mode :=
247arm_objects_cflags :=
248normal_objects_cflags :=
249endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800250
251###########################################################
252## Define per-module debugging flags. Users can turn on
253## debugging for a particular module by setting DEBUG_MODULE_ModuleName
254## to a non-empty value in their environment or buildspec.mk,
255## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the
256## debug flags that they want to use.
257###########################################################
258ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE))
259 debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS)
260else
261 debug_cflags :=
262endif
263
264###########################################################
265## Stuff source generated from one-off tools
266###########################################################
267$(LOCAL_GENERATED_SOURCES): PRIVATE_MODULE := $(LOCAL_MODULE)
268
269ALL_GENERATED_SOURCES += $(LOCAL_GENERATED_SOURCES)
270
271
272###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700273## Compile the .proto files to .cc and then to .o
274###########################################################
275proto_sources := $(filter %.proto,$(LOCAL_SRC_FILES))
276proto_generated_objects :=
277proto_generated_headers :=
278ifneq ($(proto_sources),)
279proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
280proto_generated_cc_sources_dir := $(intermediates)/proto
281proto_generated_cc_sources := $(addprefix $(proto_generated_cc_sources_dir)/, \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700282 $(patsubst %.proto,%.pb.cc,$(proto_sources_fullpath)))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700283proto_generated_objects := $(patsubst %.cc,%.o, $(proto_generated_cc_sources))
284
285$(proto_generated_cc_sources): PRIVATE_PROTO_INCLUDES := $(TOP)
286$(proto_generated_cc_sources): PRIVATE_PROTO_CC_OUTPUT_DIR := $(proto_generated_cc_sources_dir)
Ying Wang33c0d952010-11-05 11:30:58 -0700287$(proto_generated_cc_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700288$(proto_generated_cc_sources): $(proto_generated_cc_sources_dir)/%.pb.cc: %.proto $(PROTOC)
289 $(transform-proto-to-cc)
290
291proto_generated_headers := $(patsubst %.pb.cc,%.pb.h, $(proto_generated_cc_sources))
292$(proto_generated_headers): $(proto_generated_cc_sources_dir)/%.pb.h: $(proto_generated_cc_sources_dir)/%.pb.cc
293
294$(proto_generated_cc_sources): PRIVATE_ARM_MODE := $(normal_objects_mode)
295$(proto_generated_cc_sources): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Narayan Kamath21094872012-04-02 18:19:31 +0100296$(proto_generated_objects): $(proto_generated_cc_sources_dir)/%.o: $(proto_generated_cc_sources_dir)/%.cc $(proto_generated_headers)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700297 $(transform-$(PRIVATE_HOST)cpp-to-o)
298-include $(proto_generated_objects:%.o=%.P)
299
300LOCAL_C_INCLUDES += external/protobuf/src $(proto_generated_cc_sources_dir)
301LOCAL_CFLAGS += -DGOOGLE_PROTOBUF_NO_RTTI
302ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full)
303LOCAL_STATIC_LIBRARIES += libprotobuf-cpp-2.3.0-full
304else
305LOCAL_STATIC_LIBRARIES += libprotobuf-cpp-2.3.0-lite
306endif
307endif
308
309
310###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800311## YACC: Compile .y files to .cpp and the to .o.
312###########################################################
313
314yacc_sources := $(filter %.y,$(LOCAL_SRC_FILES))
315yacc_cpps := $(addprefix \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700316 $(intermediates)/,$(yacc_sources:.y=$(LOCAL_CPP_EXTENSION)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800317yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h)
318yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o)
319
320ifneq ($(strip $(yacc_cpps)),)
321$(yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700322 $(TOPDIR)$(LOCAL_PATH)/%.y \
323 $(lex_cpps) $(LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800324 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
325$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
326
327$(yacc_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
328$(yacc_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
329$(yacc_objects): $(intermediates)/%.o: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
330 $(transform-$(PRIVATE_HOST)cpp-to-o)
331endif
332
333###########################################################
334## LEX: Compile .l files to .cpp and then to .o.
335###########################################################
336
337lex_sources := $(filter %.l,$(LOCAL_SRC_FILES))
338lex_cpps := $(addprefix \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700339 $(intermediates)/,$(lex_sources:.l=$(LOCAL_CPP_EXTENSION)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800340lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o)
341
342ifneq ($(strip $(lex_cpps)),)
343$(lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700344 $(TOPDIR)$(LOCAL_PATH)/%.l
The Android Open Source Project88b60792009-03-03 19:28:42 -0800345 $(transform-l-to-cpp)
346
347$(lex_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
348$(lex_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
349$(lex_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700350 $(intermediates)/%$(LOCAL_CPP_EXTENSION) \
351 $(LOCAL_ADDITIONAL_DEPENDENCIES) \
352 $(yacc_headers)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800353 $(transform-$(PRIVATE_HOST)cpp-to-o)
354endif
355
356###########################################################
357## C++: Compile .cpp files to .o.
358###########################################################
359
Jeff Browne33ba4c2011-07-11 22:11:46 -0700360# we also do this on host modules, even though
The Android Open Source Project88b60792009-03-03 19:28:42 -0800361# it's not really arm, because there are files that are shared.
362cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(LOCAL_SRC_FILES)))
363cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o))
364
365cpp_normal_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(LOCAL_SRC_FILES))
366cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o))
367
368$(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
369$(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
370$(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
371$(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
372
373cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects)
374
375ifneq ($(strip $(cpp_objects)),)
376$(cpp_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700377 $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \
378 $(yacc_cpps) $(proto_generated_headers) $(my_compiler_dependencies) \
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400379 $(LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800380 $(transform-$(PRIVATE_HOST)cpp-to-o)
381-include $(cpp_objects:%.o=%.P)
382endif
383
384###########################################################
385## C++: Compile generated .cpp files to .o.
386###########################################################
387
388gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(LOCAL_GENERATED_SOURCES))
389gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o)
390
391ifneq ($(strip $(gen_cpp_objects)),)
392# Compile all generated files as thumb.
393# TODO: support compiling certain generated files as arm.
394$(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
395$(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400396$(gen_cpp_objects): $(intermediates)/%.o: \
397 $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700398 $(proto_generated_headers) $(my_compiler_dependencies) \
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400399 $(LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800400 $(transform-$(PRIVATE_HOST)cpp-to-o)
401-include $(gen_cpp_objects:%.o=%.P)
402endif
403
404###########################################################
405## S: Compile generated .S and .s files to .o.
406###########################################################
407
408gen_S_sources := $(filter %.S,$(LOCAL_GENERATED_SOURCES))
409gen_S_objects := $(gen_S_sources:%.S=%.o)
410
411ifneq ($(strip $(gen_S_sources)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400412$(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700413 $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800414 $(transform-$(PRIVATE_HOST)s-to-o)
415-include $(gen_S_objects:%.o=%.P)
416endif
417
418gen_s_sources := $(filter %.s,$(LOCAL_GENERATED_SOURCES))
419gen_s_objects := $(gen_s_sources:%.s=%.o)
420
421ifneq ($(strip $(gen_s_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400422$(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700423 $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800424 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
425-include $(gen_s_objects:%.o=%.P)
426endif
427
428gen_asm_objects := $(gen_S_objects) $(gen_s_objects)
429
430###########################################################
431## C: Compile .c files to .o.
432###########################################################
433
434c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(LOCAL_SRC_FILES)))
435c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o))
436
437c_normal_sources := $(filter %.c,$(LOCAL_SRC_FILES))
438c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o))
439
440$(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
441$(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
442$(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
443$(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
444
445c_objects := $(c_arm_objects) $(c_normal_objects)
446
447ifneq ($(strip $(c_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400448$(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c $(yacc_cpps) $(proto_generated_headers) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700449 $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800450 $(transform-$(PRIVATE_HOST)c-to-o)
451-include $(c_objects:%.o=%.P)
452endif
453
454###########################################################
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700455## C: Compile generated .c files to .o.
456###########################################################
457
458gen_c_sources := $(filter %.c,$(LOCAL_GENERATED_SOURCES))
459gen_c_objects := $(gen_c_sources:%.c=%.o)
460
461ifneq ($(strip $(gen_c_objects)),)
462# Compile all generated files as thumb.
463# TODO: support compiling certain generated files as arm.
464$(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
465$(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400466$(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700467 $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES)
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700468 $(transform-$(PRIVATE_HOST)c-to-o)
469-include $(gen_c_objects:%.o=%.P)
470endif
471
472###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200473## ObjC: Compile .m files to .o
474###########################################################
475
476objc_sources := $(filter %.m,$(LOCAL_SRC_FILES))
477objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o))
478
479ifneq ($(strip $(objc_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400480$(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m $(yacc_cpps) $(proto_generated_headers) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700481 $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200482 $(transform-$(PRIVATE_HOST)m-to-o)
483-include $(objc_objects:%.o=%.P)
484endif
485
486###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800487## AS: Compile .S files to .o.
488###########################################################
489
490asm_sources_S := $(filter %.S,$(LOCAL_SRC_FILES))
491asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o))
492
493ifneq ($(strip $(asm_objects_S)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400494$(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700495 $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800496 $(transform-$(PRIVATE_HOST)s-to-o)
497-include $(asm_objects_S:%.o=%.P)
498endif
499
500asm_sources_s := $(filter %.s,$(LOCAL_SRC_FILES))
501asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o))
502
503ifneq ($(strip $(asm_objects_s)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400504$(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700505 $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800506 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
507-include $(asm_objects_s:%.o=%.P)
508endif
509
510asm_objects := $(asm_objects_S) $(asm_objects_s)
511
512
513###########################################################
514## Common object handling.
515###########################################################
516
517# some rules depend on asm_objects being first. If your code depends on
518# being first, it's reasonable to require it to be assembly
519all_objects := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700520 $(asm_objects) \
521 $(cpp_objects) \
522 $(gen_cpp_objects) \
523 $(gen_asm_objects) \
524 $(c_objects) \
525 $(gen_c_objects) \
526 $(objc_objects) \
527 $(yacc_objects) \
528 $(lex_objects) \
529 $(proto_generated_objects) \
530 $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800531
Colin Cross9ad36ef2012-03-30 19:31:00 -0700532LOCAL_C_INCLUDES += $(TOPDIR)$(LOCAL_PATH) $(intermediates)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800533
Ying Wangbce4b752010-07-22 15:51:56 -0700534ifndef LOCAL_NDK_VERSION
535 LOCAL_C_INCLUDES += $(JNI_H_INCLUDE)
536endif
537
The Android Open Source Project88b60792009-03-03 19:28:42 -0800538$(all_objects) : | $(LOCAL_GENERATED_SOURCES)
539ALL_C_CPP_ETC_OBJECTS += $(all_objects)
540
541###########################################################
542## Copy headers to the install tree
543###########################################################
544include $(BUILD_COPY_HEADERS)
545
546###########################################################
547# Standard library handling.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800548###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800549
550###########################################################
551# The list of libraries that this module will link against are in
552# these variables. Each is a list of bare module names like "libc libm".
553#
554# LOCAL_SHARED_LIBRARIES
555# LOCAL_STATIC_LIBRARIES
556# LOCAL_WHOLE_STATIC_LIBRARIES
557#
558# We need to convert the bare names into the dependencies that
559# we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE.
560# LOCAL_BUILT_MODULE should depend on the BUILT versions of the
561# libraries, so that simply building this module doesn't force
562# an install of a library. Similarly, LOCAL_INSTALLED_MODULE
563# should depend on the INSTALLED versions of the libraries so
564# that they get installed when this module does.
565###########################################################
566# NOTE:
567# WHOLE_STATIC_LIBRARIES are libraries that are pulled into the
568# module without leaving anything out, which is useful for turning
569# a collection of .a files into a .so file. Linking against a
570# normal STATIC_LIBRARY will only pull in code/symbols that are
571# referenced by the module. (see gcc/ld's --whole-archive option)
572###########################################################
573
574# Get the list of BUILT libraries, which are under
575# various intermediates directories.
576so_suffix := $($(my_prefix)SHLIB_SUFFIX)
577a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX)
578
Ying Wang1a081002010-07-13 14:55:47 -0700579ifdef LOCAL_NDK_VERSION
The Android Open Source Project88b60792009-03-03 19:28:42 -0800580built_shared_libraries := \
581 $(addprefix $($(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
582 $(addsuffix $(so_suffix), \
583 $(LOCAL_SHARED_LIBRARIES)))
584
Ying Wangcce4c972011-03-03 18:53:53 -0800585my_system_shared_libraries_fullpath := \
586 $(my_ndk_stl_shared_lib_fullpath) \
587 $(addprefix $(my_ndk_version_root)/usr/lib/, \
588 $(addsuffix $(so_suffix), $(LOCAL_SYSTEM_SHARED_LIBRARIES)))
Ying Wang1a081002010-07-13 14:55:47 -0700589
590built_shared_libraries += $(my_system_shared_libraries_fullpath)
591LOCAL_SHARED_LIBRARIES += $(LOCAL_SYSTEM_SHARED_LIBRARIES)
592else
593LOCAL_SHARED_LIBRARIES += $(LOCAL_SYSTEM_SHARED_LIBRARIES)
594built_shared_libraries := \
595 $(addprefix $($(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
596 $(addsuffix $(so_suffix), \
597 $(LOCAL_SHARED_LIBRARIES)))
Ying Wang1a081002010-07-13 14:55:47 -0700598endif
599
The Android Open Source Project88b60792009-03-03 19:28:42 -0800600built_static_libraries := \
601 $(foreach lib,$(LOCAL_STATIC_LIBRARIES), \
602 $(call intermediates-dir-for, \
603 STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE))/$(lib)$(a_suffix))
604
Ying Wangcce4c972011-03-03 18:53:53 -0800605ifdef LOCAL_NDK_VERSION
606built_static_libraries += $(my_ndk_stl_static_lib)
607endif
608
The Android Open Source Project88b60792009-03-03 19:28:42 -0800609built_whole_libraries := \
610 $(foreach lib,$(LOCAL_WHOLE_STATIC_LIBRARIES), \
611 $(call intermediates-dir-for, \
612 STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE))/$(lib)$(a_suffix))
613
The Android Open Source Project88b60792009-03-03 19:28:42 -0800614# We don't care about installed static libraries, since the
615# libraries have already been linked into the module at that point.
616# We do, however, care about the NOTICE files for any static
Steve Blockd14d3b42012-03-01 11:34:41 +0000617# libraries that we use. (see notice_files.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800618
619installed_static_library_notice_file_targets := \
620 $(foreach lib,$(LOCAL_STATIC_LIBRARIES) $(LOCAL_WHOLE_STATIC_LIBRARIES), \
621 NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib))
622
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700623# Default is -fno-rtti.
Doug Kwane3c3c6d2011-06-07 10:55:48 -0700624ifeq ($(strip $(LOCAL_RTTI_FLAG)),)
625LOCAL_RTTI_FLAG := -fno-rtti
626endif
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700627
The Android Open Source Project88b60792009-03-03 19:28:42 -0800628###########################################################
629# Rule-specific variable definitions
630###########################################################
631$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS)
632$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(LOCAL_ASFLAGS)
633$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(LOCAL_CFLAGS)
634$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(LOCAL_CPPFLAGS)
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700635$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800636$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags)
637$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(LOCAL_C_INCLUDES)
638$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(LOCAL_LDFLAGS)
639$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(LOCAL_LDLIBS)
Jeff Brown703e7c62011-02-04 20:15:00 -0800640$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_CRT := $(LOCAL_NO_CRT)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800641
642# this is really the way to get the files onto the command line instead
643# of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work
644$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries)
645$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries)
646$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries)
647$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects)
648
649###########################################################
650# Define library dependencies.
651###########################################################
652# all_libraries is used for the dependencies on LOCAL_BUILT_MODULE.
653all_libraries := \
654 $(built_shared_libraries) \
655 $(built_static_libraries) \
656 $(built_whole_libraries)
657
The Android Open Source Project88b60792009-03-03 19:28:42 -0800658# Also depend on the notice files for any static libraries that
659# are linked into this module. This will force them to be installed
660# when this module is.
661$(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets)