The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | ########################################################### |
| 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 Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 8 | ###################################### |
| 9 | ## Sanity check for LOCAL_NDK_VERSION |
| 10 | ###################################### |
| 11 | my_ndk_version_root := |
| 12 | ifdef 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 Wang | 2f76c6d | 2011-02-23 10:07:03 -0800 | [diff] [blame] | 27 | my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/android-ndk-r$(LOCAL_NDK_VERSION)/sources |
Ying Wang | 02c9813 | 2010-09-23 17:59:36 -0700 | [diff] [blame] | 28 | my_ndk_version_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/android-ndk-r$(LOCAL_NDK_VERSION)/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_ARCH) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 29 | ifeq ($(wildcard $(my_ndk_version_root)),) |
| 30 | $(error $(LOCAL_PATH): ndk version root does not exist: $(my_ndk_version_root)) |
| 31 | endif |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 32 | |
| 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 Wang | d9020c2 | 2011-09-07 14:31:47 -0700 | [diff] [blame] | 59 | 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 Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 61 | my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/libs/$(TARGET_CPU_ABI)/libstdc++.a |
| 62 | endif |
| 63 | endif |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 64 | endif |
| 65 | |
Ying Wang | 704c0c9 | 2011-09-15 13:50:52 -0700 | [diff] [blame] | 66 | ################################################## |
| 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. |
| 73 | ifdef LOCAL_IS_HOST_MODULE |
| 74 | ifeq ($(LOCAL_SYSTEM_SHARED_LIBRARIES),none) |
| 75 | LOCAL_SYSTEM_SHARED_LIBRARIES := |
| 76 | endif |
| 77 | else |
| 78 | ifeq ($(LOCAL_SYSTEM_SHARED_LIBRARIES),none) |
| 79 | LOCAL_SYSTEM_SHARED_LIBRARIES := $(TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES) |
| 80 | endif |
| 81 | endif |
| 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. |
| 90 | define 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 | ) |
| 98 | endef |
| 99 | ifneq (,$(filter libcutils libutils,$(LOCAL_SHARED_LIBRARIES))) |
| 100 | LOCAL_SHARED_LIBRARIES := $(call insert-liblog,$(LOCAL_SHARED_LIBRARIES)) |
| 101 | endif |
| 102 | ifneq (,$(filter libcutils libutils,$(LOCAL_STATIC_LIBRARIES))) |
| 103 | LOCAL_STATIC_LIBRARIES := $(call insert-liblog,$(LOCAL_STATIC_LIBRARIES)) |
| 104 | endif |
| 105 | ifneq (,$(filter libcutils libutils,$(LOCAL_WHOLE_STATIC_LIBRARIES))) |
| 106 | LOCAL_WHOLE_STATIC_LIBRARIES := $(call insert-liblog,$(LOCAL_WHOLE_STATIC_LIBRARIES)) |
| 107 | endif |
| 108 | |
| 109 | ifdef 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) |
| 115 | else |
| 116 | installed_shared_library_module_names := \ |
| 117 | $(LOCAL_SYSTEM_SHARED_LIBRARIES) $(LOCAL_SHARED_LIBRARIES) |
| 118 | endif |
| 119 | # The real dependency will be added after all Android.mks are loaded and the install paths |
| 120 | # of the shared libraries are determined. |
| 121 | LOCAL_REQUIRED_MODULES += $(installed_shared_library_module_names) |
| 122 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 123 | ####################################### |
| 124 | include $(BUILD_SYSTEM)/base_rules.mk |
| 125 | ####################################### |
Evgeniy Stepanov | 6cc9c06 | 2012-03-30 12:15:12 +0400 | [diff] [blame] | 126 | |
| 127 | ifeq ($(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) |
| 133 | endif |
| 134 | |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 135 | my_compiler_dependencies := |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 136 | ifeq ($(strip $(LOCAL_CLANG)),true) |
| 137 | LOCAL_CFLAGS += $(CLANG_CONFIG_EXTRA_CFLAGS) |
| 138 | LOCAL_LDFLAGS += $(CLANG_CONFIG_EXTRA_LDFLAGS) |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 139 | my_compiler_dependencies := $(CLANG) $(CLANG_CXX) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 140 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 141 | |
Jing Yu | 2dcc806 | 2009-09-21 16:31:50 -0700 | [diff] [blame] | 142 | #################################################### |
| 143 | ## Add FDO flags if FDO is turned on and supported |
| 144 | #################################################### |
| 145 | ifeq ($(strip $(LOCAL_NO_FDO_SUPPORT)),) |
| 146 | LOCAL_CFLAGS += $(TARGET_FDO_CFLAGS) |
| 147 | LOCAL_CPPFLAGS += $(TARGET_FDO_CFLAGS) |
| 148 | LOCAL_LDFLAGS += $(TARGET_FDO_CFLAGS) |
| 149 | endif |
| 150 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 151 | ########################################################### |
Jim Huang | 20d1ba6 | 2010-10-14 16:15:56 +0800 | [diff] [blame] | 152 | ## Explicitly declare assembly-only __ASSEMBLY__ macro for |
| 153 | ## assembly source |
| 154 | ########################################################### |
| 155 | LOCAL_ASFLAGS += -D__ASSEMBLY__ |
| 156 | |
| 157 | ########################################################### |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 158 | ## Define PRIVATE_ variables from global vars |
| 159 | ########################################################### |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 160 | ifeq ($(strip $(LOCAL_CLANG)),true) |
| 161 | my_target_global_cflags := $(TARGET_GLOBAL_CLANG_FLAGS) |
| 162 | else |
| 163 | my_target_global_cflags := $(TARGET_GLOBAL_CFLAGS) |
| 164 | endif |
| 165 | |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 166 | ifdef LOCAL_NDK_VERSION |
| 167 | my_target_project_includes := |
Evgeniy Stepanov | a7095e9 | 2012-03-30 12:18:52 +0400 | [diff] [blame] | 168 | my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_version_root)/usr/include |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 169 | # TODO: more reliable way to remove platform stuff. |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 170 | my_target_global_cflags := $(filter-out -include -I system/%, $(my_target_global_cflags)) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 171 | my_target_global_cppflags := $(filter-out -include -I system/%, $(TARGET_GLOBAL_CPPFLAGS)) |
| 172 | else |
| 173 | my_target_project_includes := $(TARGET_PROJECT_INCLUDES) |
Evgeniy Stepanov | a7095e9 | 2012-03-30 12:18:52 +0400 | [diff] [blame] | 174 | my_target_c_includes := $(TARGET_C_INCLUDES) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 175 | my_target_global_cflags := $(my_target_global_cflags) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 176 | my_target_global_cppflags := $(TARGET_GLOBAL_CPPFLAGS) |
Evgeniy Stepanov | a7095e9 | 2012-03-30 12:18:52 +0400 | [diff] [blame] | 177 | ifeq ($(strip $(LOCAL_CLANG)),true) |
| 178 | my_target_c_includes += $(CLANG_CONFIG_EXTRA_TARGET_C_INCLUDES) |
| 179 | endif |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 180 | endif |
| 181 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes) |
Evgeniy Stepanov | a7095e9 | 2012-03-30 12:18:52 +0400 | [diff] [blame] | 182 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 183 | $(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 Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 187 | ## Define PRIVATE_ variables used by multiple module types |
| 188 | ########################################################### |
| 189 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 190 | $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 191 | |
| 192 | ifeq ($(strip $(LOCAL_CC)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 193 | ifeq ($(strip $(LOCAL_CLANG)),true) |
| 194 | LOCAL_CC := $(CLANG) |
| 195 | else |
| 196 | LOCAL_CC := $($(my_prefix)CC) |
| 197 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 198 | endif |
| 199 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(LOCAL_CC) |
| 200 | |
| 201 | ifeq ($(strip $(LOCAL_CXX)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 202 | ifeq ($(strip $(LOCAL_CLANG)),true) |
| 203 | LOCAL_CXX := $(CLANG_CXX) |
| 204 | else |
| 205 | LOCAL_CXX := $($(my_prefix)CXX) |
| 206 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 207 | endif |
| 208 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(LOCAL_CXX) |
| 209 | |
| 210 | # TODO: support a mix of standard extensions so that this isn't necessary |
| 211 | LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION)) |
| 212 | ifeq ($(LOCAL_CPP_EXTENSION),) |
| 213 | LOCAL_CPP_EXTENSION := .cpp |
| 214 | endif |
| 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. |
| 219 | ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),) |
| 220 | ifeq ($(strip $(LOCAL_ALLOW_UNDEFINED_SYMBOLS)),) |
| 221 | LOCAL_LDFLAGS := $(LOCAL_LDFLAGS) $($(my_prefix)NO_UNDEFINED_LDFLAGS) |
| 222 | endif |
| 223 | endif |
| 224 | |
Ying Wang | fcdabd4 | 2011-04-25 14:22:41 -0700 | [diff] [blame] | 225 | ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES)) |
| 226 | $(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true |
| 227 | else |
| 228 | $(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := |
| 229 | endif |
| 230 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 231 | ########################################################### |
| 232 | ## Define arm-vs-thumb-mode flags. |
| 233 | ########################################################### |
| 234 | LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE)) |
Chih-Wei Huang | 0d09e58 | 2010-07-09 10:07:52 +0800 | [diff] [blame] | 235 | ifeq ($(TARGET_ARCH),arm) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 236 | arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm) |
| 237 | normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb) |
| 238 | |
Dave Bort | 9528248 | 2009-04-23 18:44:55 -0700 | [diff] [blame] | 239 | # 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). |
| 242 | arm_objects_cflags := $($(my_prefix)$(arm_objects_mode)_CFLAGS) |
| 243 | normal_objects_cflags := $($(my_prefix)$(normal_objects_mode)_CFLAGS) |
Chih-Wei Huang | 0d09e58 | 2010-07-09 10:07:52 +0800 | [diff] [blame] | 244 | else |
| 245 | arm_objects_mode := |
| 246 | normal_objects_mode := |
| 247 | arm_objects_cflags := |
| 248 | normal_objects_cflags := |
| 249 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 250 | |
| 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 | ########################################################### |
| 258 | ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE)) |
| 259 | debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS) |
| 260 | else |
| 261 | debug_cflags := |
| 262 | endif |
| 263 | |
| 264 | ########################################################### |
| 265 | ## Stuff source generated from one-off tools |
| 266 | ########################################################### |
| 267 | $(LOCAL_GENERATED_SOURCES): PRIVATE_MODULE := $(LOCAL_MODULE) |
| 268 | |
| 269 | ALL_GENERATED_SOURCES += $(LOCAL_GENERATED_SOURCES) |
| 270 | |
| 271 | |
| 272 | ########################################################### |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 273 | ## Compile the .proto files to .cc and then to .o |
| 274 | ########################################################### |
| 275 | proto_sources := $(filter %.proto,$(LOCAL_SRC_FILES)) |
| 276 | proto_generated_objects := |
| 277 | proto_generated_headers := |
| 278 | ifneq ($(proto_sources),) |
| 279 | proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources)) |
| 280 | proto_generated_cc_sources_dir := $(intermediates)/proto |
| 281 | proto_generated_cc_sources := $(addprefix $(proto_generated_cc_sources_dir)/, \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 282 | $(patsubst %.proto,%.pb.cc,$(proto_sources_fullpath))) |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 283 | proto_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 Wang | 33c0d95 | 2010-11-05 11:30:58 -0700 | [diff] [blame] | 287 | $(proto_generated_cc_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS) |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 288 | $(proto_generated_cc_sources): $(proto_generated_cc_sources_dir)/%.pb.cc: %.proto $(PROTOC) |
| 289 | $(transform-proto-to-cc) |
| 290 | |
| 291 | proto_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 Kamath | 2109487 | 2012-04-02 18:19:31 +0100 | [diff] [blame] | 296 | $(proto_generated_objects): $(proto_generated_cc_sources_dir)/%.o: $(proto_generated_cc_sources_dir)/%.cc $(proto_generated_headers) |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 297 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 298 | -include $(proto_generated_objects:%.o=%.P) |
| 299 | |
| 300 | LOCAL_C_INCLUDES += external/protobuf/src $(proto_generated_cc_sources_dir) |
| 301 | LOCAL_CFLAGS += -DGOOGLE_PROTOBUF_NO_RTTI |
| 302 | ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full) |
| 303 | LOCAL_STATIC_LIBRARIES += libprotobuf-cpp-2.3.0-full |
| 304 | else |
| 305 | LOCAL_STATIC_LIBRARIES += libprotobuf-cpp-2.3.0-lite |
| 306 | endif |
| 307 | endif |
| 308 | |
| 309 | |
| 310 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 311 | ## YACC: Compile .y files to .cpp and the to .o. |
| 312 | ########################################################### |
| 313 | |
| 314 | yacc_sources := $(filter %.y,$(LOCAL_SRC_FILES)) |
| 315 | yacc_cpps := $(addprefix \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 316 | $(intermediates)/,$(yacc_sources:.y=$(LOCAL_CPP_EXTENSION))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 317 | yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h) |
| 318 | yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o) |
| 319 | |
| 320 | ifneq ($(strip $(yacc_cpps)),) |
| 321 | $(yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 322 | $(TOPDIR)$(LOCAL_PATH)/%.y \ |
| 323 | $(lex_cpps) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 324 | $(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) |
| 331 | endif |
| 332 | |
| 333 | ########################################################### |
| 334 | ## LEX: Compile .l files to .cpp and then to .o. |
| 335 | ########################################################### |
| 336 | |
| 337 | lex_sources := $(filter %.l,$(LOCAL_SRC_FILES)) |
| 338 | lex_cpps := $(addprefix \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 339 | $(intermediates)/,$(lex_sources:.l=$(LOCAL_CPP_EXTENSION))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 340 | lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o) |
| 341 | |
| 342 | ifneq ($(strip $(lex_cpps)),) |
| 343 | $(lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 344 | $(TOPDIR)$(LOCAL_PATH)/%.l |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 345 | $(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 Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 350 | $(intermediates)/%$(LOCAL_CPP_EXTENSION) \ |
| 351 | $(LOCAL_ADDITIONAL_DEPENDENCIES) \ |
| 352 | $(yacc_headers) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 353 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 354 | endif |
| 355 | |
| 356 | ########################################################### |
| 357 | ## C++: Compile .cpp files to .o. |
| 358 | ########################################################### |
| 359 | |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 360 | # we also do this on host modules, even though |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 361 | # it's not really arm, because there are files that are shared. |
| 362 | cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(LOCAL_SRC_FILES))) |
| 363 | cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o)) |
| 364 | |
| 365 | cpp_normal_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(LOCAL_SRC_FILES)) |
| 366 | cpp_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 | |
| 373 | cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects) |
| 374 | |
| 375 | ifneq ($(strip $(cpp_objects)),) |
| 376 | $(cpp_objects): $(intermediates)/%.o: \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 377 | $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \ |
| 378 | $(yacc_cpps) $(proto_generated_headers) $(my_compiler_dependencies) \ |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 379 | $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 380 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 381 | -include $(cpp_objects:%.o=%.P) |
| 382 | endif |
| 383 | |
| 384 | ########################################################### |
| 385 | ## C++: Compile generated .cpp files to .o. |
| 386 | ########################################################### |
| 387 | |
| 388 | gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(LOCAL_GENERATED_SOURCES)) |
| 389 | gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o) |
| 390 | |
| 391 | ifneq ($(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 Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 396 | $(gen_cpp_objects): $(intermediates)/%.o: \ |
| 397 | $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 398 | $(proto_generated_headers) $(my_compiler_dependencies) \ |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 399 | $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 400 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 401 | -include $(gen_cpp_objects:%.o=%.P) |
| 402 | endif |
| 403 | |
| 404 | ########################################################### |
| 405 | ## S: Compile generated .S and .s files to .o. |
| 406 | ########################################################### |
| 407 | |
| 408 | gen_S_sources := $(filter %.S,$(LOCAL_GENERATED_SOURCES)) |
| 409 | gen_S_objects := $(gen_S_sources:%.S=%.o) |
| 410 | |
| 411 | ifneq ($(strip $(gen_S_sources)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 412 | $(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 413 | $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 414 | $(transform-$(PRIVATE_HOST)s-to-o) |
| 415 | -include $(gen_S_objects:%.o=%.P) |
| 416 | endif |
| 417 | |
| 418 | gen_s_sources := $(filter %.s,$(LOCAL_GENERATED_SOURCES)) |
| 419 | gen_s_objects := $(gen_s_sources:%.s=%.o) |
| 420 | |
| 421 | ifneq ($(strip $(gen_s_objects)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 422 | $(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 423 | $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 424 | $(transform-$(PRIVATE_HOST)s-to-o-no-deps) |
| 425 | -include $(gen_s_objects:%.o=%.P) |
| 426 | endif |
| 427 | |
| 428 | gen_asm_objects := $(gen_S_objects) $(gen_s_objects) |
| 429 | |
| 430 | ########################################################### |
| 431 | ## C: Compile .c files to .o. |
| 432 | ########################################################### |
| 433 | |
| 434 | c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(LOCAL_SRC_FILES))) |
| 435 | c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o)) |
| 436 | |
| 437 | c_normal_sources := $(filter %.c,$(LOCAL_SRC_FILES)) |
| 438 | c_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 | |
| 445 | c_objects := $(c_arm_objects) $(c_normal_objects) |
| 446 | |
| 447 | ifneq ($(strip $(c_objects)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 448 | $(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c $(yacc_cpps) $(proto_generated_headers) \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 449 | $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 450 | $(transform-$(PRIVATE_HOST)c-to-o) |
| 451 | -include $(c_objects:%.o=%.P) |
| 452 | endif |
| 453 | |
| 454 | ########################################################### |
Jack Palevich | e7b3e2c | 2009-05-04 14:32:44 -0700 | [diff] [blame] | 455 | ## C: Compile generated .c files to .o. |
| 456 | ########################################################### |
| 457 | |
| 458 | gen_c_sources := $(filter %.c,$(LOCAL_GENERATED_SOURCES)) |
| 459 | gen_c_objects := $(gen_c_sources:%.c=%.o) |
| 460 | |
| 461 | ifneq ($(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 Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 466 | $(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 467 | $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
Jack Palevich | e7b3e2c | 2009-05-04 14:32:44 -0700 | [diff] [blame] | 468 | $(transform-$(PRIVATE_HOST)c-to-o) |
| 469 | -include $(gen_c_objects:%.o=%.P) |
| 470 | endif |
| 471 | |
| 472 | ########################################################### |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 473 | ## ObjC: Compile .m files to .o |
| 474 | ########################################################### |
| 475 | |
| 476 | objc_sources := $(filter %.m,$(LOCAL_SRC_FILES)) |
| 477 | objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o)) |
| 478 | |
| 479 | ifneq ($(strip $(objc_objects)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 480 | $(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m $(yacc_cpps) $(proto_generated_headers) \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 481 | $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 482 | $(transform-$(PRIVATE_HOST)m-to-o) |
| 483 | -include $(objc_objects:%.o=%.P) |
| 484 | endif |
| 485 | |
| 486 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 487 | ## AS: Compile .S files to .o. |
| 488 | ########################################################### |
| 489 | |
| 490 | asm_sources_S := $(filter %.S,$(LOCAL_SRC_FILES)) |
| 491 | asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o)) |
| 492 | |
| 493 | ifneq ($(strip $(asm_objects_S)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 494 | $(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 495 | $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 496 | $(transform-$(PRIVATE_HOST)s-to-o) |
| 497 | -include $(asm_objects_S:%.o=%.P) |
| 498 | endif |
| 499 | |
| 500 | asm_sources_s := $(filter %.s,$(LOCAL_SRC_FILES)) |
| 501 | asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o)) |
| 502 | |
| 503 | ifneq ($(strip $(asm_objects_s)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 504 | $(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 505 | $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 506 | $(transform-$(PRIVATE_HOST)s-to-o-no-deps) |
| 507 | -include $(asm_objects_s:%.o=%.P) |
| 508 | endif |
| 509 | |
| 510 | asm_objects := $(asm_objects_S) $(asm_objects_s) |
| 511 | |
| 512 | |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 513 | #################################################### |
| 514 | ## Import includes |
| 515 | #################################################### |
| 516 | import_includes := $(intermediates)/import_includes |
| 517 | import_includes_deps := $(strip \ |
| 518 | $(foreach l, $(installed_shared_library_module_names), \ |
| 519 | $(call intermediates-dir-for,SHARED_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE))/export_includes) \ |
| 520 | $(foreach l, $(LOCAL_STATIC_LIBRARIES) $(LOCAL_WHOLE_STATIC_LIBRARIES), \ |
| 521 | $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE))/export_includes)) |
| 522 | $(import_includes) : $(import_includes_deps) |
| 523 | @echo Import includes file: $@ |
| 524 | $(hide) mkdir -p $(dir $@) && rm -f $@ |
| 525 | ifdef import_includes_deps |
| 526 | $(hide) for f in $^; do \ |
| 527 | cat $$f >> $@; \ |
| 528 | done |
| 529 | else |
| 530 | $(hide) touch $@ |
| 531 | endif |
| 532 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 533 | ########################################################### |
| 534 | ## Common object handling. |
| 535 | ########################################################### |
| 536 | |
| 537 | # some rules depend on asm_objects being first. If your code depends on |
| 538 | # being first, it's reasonable to require it to be assembly |
| 539 | all_objects := \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 540 | $(asm_objects) \ |
| 541 | $(cpp_objects) \ |
| 542 | $(gen_cpp_objects) \ |
| 543 | $(gen_asm_objects) \ |
| 544 | $(c_objects) \ |
| 545 | $(gen_c_objects) \ |
| 546 | $(objc_objects) \ |
| 547 | $(yacc_objects) \ |
| 548 | $(lex_objects) \ |
| 549 | $(proto_generated_objects) \ |
| 550 | $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 551 | |
Colin Cross | 9ad36ef | 2012-03-30 19:31:00 -0700 | [diff] [blame] | 552 | LOCAL_C_INCLUDES += $(TOPDIR)$(LOCAL_PATH) $(intermediates) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 553 | |
Ying Wang | bce4b75 | 2010-07-22 15:51:56 -0700 | [diff] [blame] | 554 | ifndef LOCAL_NDK_VERSION |
| 555 | LOCAL_C_INCLUDES += $(JNI_H_INCLUDE) |
| 556 | endif |
| 557 | |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 558 | $(all_objects) : | $(LOCAL_GENERATED_SOURCES) $(import_includes) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 559 | ALL_C_CPP_ETC_OBJECTS += $(all_objects) |
| 560 | |
| 561 | ########################################################### |
| 562 | ## Copy headers to the install tree |
| 563 | ########################################################### |
| 564 | include $(BUILD_COPY_HEADERS) |
| 565 | |
| 566 | ########################################################### |
| 567 | # Standard library handling. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 568 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 569 | |
| 570 | ########################################################### |
| 571 | # The list of libraries that this module will link against are in |
| 572 | # these variables. Each is a list of bare module names like "libc libm". |
| 573 | # |
| 574 | # LOCAL_SHARED_LIBRARIES |
| 575 | # LOCAL_STATIC_LIBRARIES |
| 576 | # LOCAL_WHOLE_STATIC_LIBRARIES |
| 577 | # |
| 578 | # We need to convert the bare names into the dependencies that |
| 579 | # we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE. |
| 580 | # LOCAL_BUILT_MODULE should depend on the BUILT versions of the |
| 581 | # libraries, so that simply building this module doesn't force |
| 582 | # an install of a library. Similarly, LOCAL_INSTALLED_MODULE |
| 583 | # should depend on the INSTALLED versions of the libraries so |
| 584 | # that they get installed when this module does. |
| 585 | ########################################################### |
| 586 | # NOTE: |
| 587 | # WHOLE_STATIC_LIBRARIES are libraries that are pulled into the |
| 588 | # module without leaving anything out, which is useful for turning |
| 589 | # a collection of .a files into a .so file. Linking against a |
| 590 | # normal STATIC_LIBRARY will only pull in code/symbols that are |
| 591 | # referenced by the module. (see gcc/ld's --whole-archive option) |
| 592 | ########################################################### |
| 593 | |
| 594 | # Get the list of BUILT libraries, which are under |
| 595 | # various intermediates directories. |
| 596 | so_suffix := $($(my_prefix)SHLIB_SUFFIX) |
| 597 | a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX) |
| 598 | |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 599 | ifdef LOCAL_NDK_VERSION |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 600 | built_shared_libraries := \ |
| 601 | $(addprefix $($(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \ |
| 602 | $(addsuffix $(so_suffix), \ |
| 603 | $(LOCAL_SHARED_LIBRARIES))) |
| 604 | |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 605 | my_system_shared_libraries_fullpath := \ |
| 606 | $(my_ndk_stl_shared_lib_fullpath) \ |
| 607 | $(addprefix $(my_ndk_version_root)/usr/lib/, \ |
| 608 | $(addsuffix $(so_suffix), $(LOCAL_SYSTEM_SHARED_LIBRARIES))) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 609 | |
| 610 | built_shared_libraries += $(my_system_shared_libraries_fullpath) |
| 611 | LOCAL_SHARED_LIBRARIES += $(LOCAL_SYSTEM_SHARED_LIBRARIES) |
| 612 | else |
| 613 | LOCAL_SHARED_LIBRARIES += $(LOCAL_SYSTEM_SHARED_LIBRARIES) |
| 614 | built_shared_libraries := \ |
| 615 | $(addprefix $($(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \ |
| 616 | $(addsuffix $(so_suffix), \ |
| 617 | $(LOCAL_SHARED_LIBRARIES))) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 618 | endif |
| 619 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 620 | built_static_libraries := \ |
| 621 | $(foreach lib,$(LOCAL_STATIC_LIBRARIES), \ |
| 622 | $(call intermediates-dir-for, \ |
| 623 | STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE))/$(lib)$(a_suffix)) |
| 624 | |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 625 | ifdef LOCAL_NDK_VERSION |
| 626 | built_static_libraries += $(my_ndk_stl_static_lib) |
| 627 | endif |
| 628 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 629 | built_whole_libraries := \ |
| 630 | $(foreach lib,$(LOCAL_WHOLE_STATIC_LIBRARIES), \ |
| 631 | $(call intermediates-dir-for, \ |
| 632 | STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE))/$(lib)$(a_suffix)) |
| 633 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 634 | # We don't care about installed static libraries, since the |
| 635 | # libraries have already been linked into the module at that point. |
| 636 | # We do, however, care about the NOTICE files for any static |
Steve Block | d14d3b4 | 2012-03-01 11:34:41 +0000 | [diff] [blame] | 637 | # libraries that we use. (see notice_files.mk) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 638 | |
| 639 | installed_static_library_notice_file_targets := \ |
| 640 | $(foreach lib,$(LOCAL_STATIC_LIBRARIES) $(LOCAL_WHOLE_STATIC_LIBRARIES), \ |
| 641 | NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib)) |
| 642 | |
Doug Kwan | 9a8ecf9 | 2011-05-10 21:50:58 -0700 | [diff] [blame] | 643 | # Default is -fno-rtti. |
Doug Kwan | e3c3c6d | 2011-06-07 10:55:48 -0700 | [diff] [blame] | 644 | ifeq ($(strip $(LOCAL_RTTI_FLAG)),) |
| 645 | LOCAL_RTTI_FLAG := -fno-rtti |
| 646 | endif |
Doug Kwan | 9a8ecf9 | 2011-05-10 21:50:58 -0700 | [diff] [blame] | 647 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 648 | ########################################################### |
| 649 | # Rule-specific variable definitions |
| 650 | ########################################################### |
| 651 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS) |
| 652 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(LOCAL_ASFLAGS) |
| 653 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(LOCAL_CFLAGS) |
| 654 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(LOCAL_CPPFLAGS) |
Doug Kwan | 9a8ecf9 | 2011-05-10 21:50:58 -0700 | [diff] [blame] | 655 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 656 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags) |
| 657 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(LOCAL_C_INCLUDES) |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 658 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 659 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(LOCAL_LDFLAGS) |
| 660 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(LOCAL_LDLIBS) |
Jeff Brown | 703e7c6 | 2011-02-04 20:15:00 -0800 | [diff] [blame] | 661 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_CRT := $(LOCAL_NO_CRT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 662 | |
| 663 | # this is really the way to get the files onto the command line instead |
| 664 | # of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work |
| 665 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries) |
| 666 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries) |
| 667 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries) |
| 668 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects) |
| 669 | |
| 670 | ########################################################### |
| 671 | # Define library dependencies. |
| 672 | ########################################################### |
| 673 | # all_libraries is used for the dependencies on LOCAL_BUILT_MODULE. |
| 674 | all_libraries := \ |
| 675 | $(built_shared_libraries) \ |
| 676 | $(built_static_libraries) \ |
| 677 | $(built_whole_libraries) |
| 678 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 679 | # Also depend on the notice files for any static libraries that |
| 680 | # are linked into this module. This will force them to be installed |
| 681 | # when this module is. |
| 682 | $(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets) |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 683 | |
| 684 | ########################################################### |
| 685 | # Export includes |
| 686 | ########################################################### |
| 687 | export_includes := $(intermediates)/export_includes |
| 688 | $(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(LOCAL_EXPORT_C_INCLUDE_DIRS) |
| 689 | $(export_includes) : |
| 690 | @echo Export includes file: $< -- $@ |
| 691 | $(hide) mkdir -p $(dir $@) && rm -f $@ |
| 692 | ifdef LOCAL_EXPORT_C_INCLUDE_DIRS |
| 693 | $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \ |
| 694 | echo "-I $$d" >> $@; \ |
| 695 | done |
| 696 | else |
| 697 | $(hide) touch $@ |
| 698 | endif |