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 |
Ying Wang | d8d3721 | 2014-03-21 16:17:04 -0700 | [diff] [blame] | 3 | ## asm/c/cpp/yacc/lex/etc source files. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4 | ## |
| 5 | ## The list of object files is exported in $(all_objects). |
| 6 | ########################################################### |
| 7 | |
Ying Wang | d8d3721 | 2014-03-21 16:17:04 -0700 | [diff] [blame] | 8 | ####################################### |
| 9 | include $(BUILD_SYSTEM)/base_rules.mk |
| 10 | ####################################### |
| 11 | |
Dan Albert | d3d894d | 2014-11-14 15:28:49 -0800 | [diff] [blame] | 12 | ################################################## |
| 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. |
| 19 | ifdef 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 |
| 25 | else |
| 26 | ifeq ($(LOCAL_SYSTEM_SHARED_LIBRARIES),none) |
Dan Albert | 7ba582a | 2015-08-06 12:22:40 -0700 | [diff] [blame] | 27 | my_system_shared_libraries := libc libm |
Dan Albert | d3d894d | 2014-11-14 15:28:49 -0800 | [diff] [blame] | 28 | else |
| 29 | my_system_shared_libraries := $(LOCAL_SYSTEM_SHARED_LIBRARIES) |
| 30 | endif |
| 31 | endif |
| 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. |
| 36 | my_src_files := $(LOCAL_SRC_FILES) |
Colin Cross | a04abc8 | 2015-06-30 12:21:59 -0700 | [diff] [blame] | 37 | my_src_files_exclude := $(LOCAL_SRC_FILES_EXCLUDE) |
Dan Albert | d3d894d | 2014-11-14 15:28:49 -0800 | [diff] [blame] | 38 | my_static_libraries := $(LOCAL_STATIC_LIBRARIES) |
| 39 | my_whole_static_libraries := $(LOCAL_WHOLE_STATIC_LIBRARIES) |
| 40 | my_shared_libraries := $(LOCAL_SHARED_LIBRARIES) |
| 41 | my_cflags := $(LOCAL_CFLAGS) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 42 | my_conlyflags := $(LOCAL_CONLYFLAGS) |
Dan Albert | d3d894d | 2014-11-14 15:28:49 -0800 | [diff] [blame] | 43 | my_cppflags := $(LOCAL_CPPFLAGS) |
Dan Albert | d160041 | 2015-06-10 16:33:43 -0700 | [diff] [blame] | 44 | my_cflags_no_override := $(GLOBAL_CFLAGS_NO_OVERRIDE) |
| 45 | my_cppflags_no_override := $(GLOBAL_CPPFLAGS_NO_OVERRIDE) |
Dan Albert | d3d894d | 2014-11-14 15:28:49 -0800 | [diff] [blame] | 46 | my_ldflags := $(LOCAL_LDFLAGS) |
| 47 | my_ldlibs := $(LOCAL_LDLIBS) |
| 48 | my_asflags := $(LOCAL_ASFLAGS) |
| 49 | my_cc := $(LOCAL_CC) |
Ying Wang | c671a7c | 2015-07-20 18:40:18 -0700 | [diff] [blame] | 50 | my_cc_wrapper := $(CC_WRAPPER) |
Dan Albert | d3d894d | 2014-11-14 15:28:49 -0800 | [diff] [blame] | 51 | my_cxx := $(LOCAL_CXX) |
Ying Wang | c671a7c | 2015-07-20 18:40:18 -0700 | [diff] [blame] | 52 | my_cxx_wrapper := $(CXX_WRAPPER) |
Dan Albert | d3d894d | 2014-11-14 15:28:49 -0800 | [diff] [blame] | 53 | my_c_includes := $(LOCAL_C_INCLUDES) |
| 54 | my_generated_sources := $(LOCAL_GENERATED_SOURCES) |
| 55 | my_native_coverage := $(LOCAL_NATIVE_COVERAGE) |
Colin Cross | a4447e8 | 2015-09-28 16:26:00 -0700 | [diff] [blame] | 56 | my_additional_dependencies := $(LOCAL_MODULE_MAKEFILE_DEP) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 57 | my_export_c_include_dirs := $(LOCAL_EXPORT_C_INCLUDE_DIRS) |
Dan Albert | d3d894d | 2014-11-14 15:28:49 -0800 | [diff] [blame] | 58 | |
Dan Albert | b58fb4a | 2014-11-14 17:15:00 -0800 | [diff] [blame] | 59 | ifdef LOCAL_IS_HOST_MODULE |
| 60 | my_allow_undefined_symbols := true |
| 61 | else |
| 62 | my_allow_undefined_symbols := $(strip $(LOCAL_ALLOW_UNDEFINED_SYMBOLS)) |
| 63 | endif |
| 64 | |
Andrew Hsieh | 140761af0 | 2014-04-25 23:47:10 -0700 | [diff] [blame] | 65 | my_ndk_sysroot := |
| 66 | my_ndk_sysroot_include := |
| 67 | my_ndk_sysroot_lib := |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 68 | ifdef LOCAL_SDK_VERSION |
Ying Wang | fe1bfe7 | 2012-08-14 11:08:03 -0700 | [diff] [blame] | 69 | ifdef LOCAL_NDK_VERSION |
| 70 | $(error $(LOCAL_PATH): LOCAL_NDK_VERSION is now retired.) |
| 71 | endif |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 72 | ifdef LOCAL_IS_HOST_MODULE |
Ian Rogers | 76a6dc3 | 2012-10-01 16:36:23 -0700 | [diff] [blame] | 73 | $(error $(LOCAL_PATH): LOCAL_SDK_VERSION cannot be used in host module) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 74 | endif |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 75 | my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/sources |
Andrew Hsieh | 140761af0 | 2014-04-25 23:47:10 -0700 | [diff] [blame] | 76 | my_ndk_sysroot := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH) |
| 77 | my_ndk_sysroot_include := $(my_ndk_sysroot)/usr/include |
Dan Albert | 445bc2f | 2015-12-11 12:49:18 -0800 | [diff] [blame^] | 78 | |
| 79 | # x86_64 and and mips64 are both multilib toolchains, so their libraries are |
| 80 | # installed in /usr/lib64. Aarch64, on the other hand, is not a multilib |
| 81 | # compiler, so its libraries are in /usr/lib. |
| 82 | # |
| 83 | # Mips32r6 is yet another variation, with libraries installed in libr6. |
| 84 | # |
| 85 | # For the rest, the libraries are installed simply to /usr/lib. |
| 86 | ifneq (,$(filter x86_64 mips64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))) |
Andrew Hsieh | 140761af0 | 2014-04-25 23:47:10 -0700 | [diff] [blame] | 87 | my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib64 |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 88 | else ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT)) |
| 89 | my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/libr6 |
Andrew Hsieh | 140761af0 | 2014-04-25 23:47:10 -0700 | [diff] [blame] | 90 | else |
| 91 | my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib |
| 92 | endif |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 93 | |
Dmitriy Ivanov | 3b51f20 | 2015-04-23 18:48:52 -0700 | [diff] [blame] | 94 | # The bionic linker now has support for packed relocations and gnu style |
| 95 | # hashes (which are much faster!), but shipping to older devices requires |
Dan Albert | ee629c9 | 2015-12-09 14:52:25 -0800 | [diff] [blame] | 96 | # the old style hash. Fortunately, we can build with both and it'll work |
| 97 | # anywhere. |
Dan Albert | 8dca15f | 2015-12-09 16:26:20 -0800 | [diff] [blame] | 98 | # |
| 99 | # This is not currently supported on MIPS architectures. |
| 100 | ifeq (,$(filter mips mips64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))) |
| 101 | my_ldflags += -Wl,--hash-style=both |
| 102 | endif |
Dan Albert | ee629c9 | 2015-12-09 14:52:25 -0800 | [diff] [blame] | 103 | |
| 104 | # We don't want to expose the relocation packer to the NDK just yet. |
| 105 | LOCAL_PACK_MODULE_RELOCATIONS := false |
Dan Albert | d3d894d | 2014-11-14 15:28:49 -0800 | [diff] [blame] | 106 | |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 107 | # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location. |
| 108 | # See ndk/docs/CPLUSPLUS-SUPPORT.html |
| 109 | my_ndk_stl_include_path := |
| 110 | my_ndk_stl_shared_lib_fullpath := |
| 111 | my_ndk_stl_shared_lib := |
| 112 | my_ndk_stl_static_lib := |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 113 | my_ndk_stl_cppflags := |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 114 | my_cpu_variant := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI) |
| 115 | ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT)) |
| 116 | my_cpu_variant := mips32r6 |
| 117 | endif |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 118 | LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT)) |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 119 | ifeq (,$(LOCAL_NDK_STL_VARIANT)) |
| 120 | LOCAL_NDK_STL_VARIANT := system |
| 121 | endif |
Dan Albert | 0e2e71d | 2015-12-09 14:46:13 -0800 | [diff] [blame] | 122 | ifneq (1,$(words $(filter none system stlport_static stlport_shared c++_static c++_shared gnustl_static, $(LOCAL_NDK_STL_VARIANT)))) |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 123 | $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT)) |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 124 | endif |
| 125 | ifeq (system,$(LOCAL_NDK_STL_VARIANT)) |
| 126 | my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include |
Dan Albert | 0e2e71d | 2015-12-09 14:46:13 -0800 | [diff] [blame] | 127 | my_system_shared_libraries += libstdc++ |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 128 | else # LOCAL_NDK_STL_VARIANT is not system |
| 129 | ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT))) |
| 130 | my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport |
Dan Albert | 0e2e71d | 2015-12-09 14:46:13 -0800 | [diff] [blame] | 131 | my_system_shared_libraries += libstdc++ |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 132 | ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT)) |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 133 | my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(my_cpu_variant)/libstlport_static.a |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 134 | else |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 135 | my_ndk_stl_shared_lib_fullpath := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(my_cpu_variant)/libstlport_shared.so |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 136 | my_ndk_stl_shared_lib := -lstlport_shared |
| 137 | endif |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 138 | else # LOCAL_NDK_STL_VARIANT is not stlport_* either |
| 139 | ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT))) |
| 140 | my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include \ |
| 141 | $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include \ |
| 142 | $(my_ndk_source_root)/android/support/include |
| 143 | ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT)) |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 144 | my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(my_cpu_variant)/libc++_static.a |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 145 | else |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 146 | my_ndk_stl_shared_lib_fullpath := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(my_cpu_variant)/libc++_shared.so |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 147 | my_ndk_stl_shared_lib := -lc++_shared |
| 148 | endif |
| 149 | my_ndk_stl_cppflags := -std=c++11 |
Dan Albert | 0e2e71d | 2015-12-09 14:46:13 -0800 | [diff] [blame] | 150 | else # LOCAL_NDK_STL_VARIANT is not c++_* either |
| 151 | ifneq (,$(filter gnustl_%, $(LOCAL_NDK_STL_VARIANT))) |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 152 | 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 Cheng | 4de6fa4 | 2014-04-10 22:46:26 -0700 | [diff] [blame] | 153 | $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/include |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 154 | 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 |
Dan Albert | 0e2e71d | 2015-12-09 14:46:13 -0800 | [diff] [blame] | 155 | else # LOCAL_NDK_STL_VARIANT must be none |
| 156 | # Do nothing. |
| 157 | endif |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 158 | endif |
| 159 | endif |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 160 | endif |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 161 | endif |
| 162 | |
Dan Albert | 95994de | 2014-08-07 18:29:11 -0700 | [diff] [blame] | 163 | # MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because |
| 164 | # all code is position independent, and then those warnings get promoted to |
| 165 | # errors. |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 166 | ifneq ($($(my_prefix)OS),windows) |
Dan Albert | 4803ce2 | 2014-08-06 12:36:46 -0700 | [diff] [blame] | 167 | ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES) |
| 168 | my_cflags += -fpie |
| 169 | else |
| 170 | my_cflags += -fPIC |
| 171 | endif |
Dan Albert | 95994de | 2014-08-07 18:29:11 -0700 | [diff] [blame] | 172 | endif |
Dan Albert | 4803ce2 | 2014-08-06 12:36:46 -0700 | [diff] [blame] | 173 | |
Dan Willemsen | 7a54985 | 2015-08-13 17:51:40 -0700 | [diff] [blame] | 174 | ifdef LOCAL_IS_HOST_MODULE |
Dan Willemsen | 85ac8d2 | 2015-08-18 17:47:06 -0700 | [diff] [blame] | 175 | my_src_files += $(LOCAL_SRC_FILES_$($(my_prefix)OS)) $(LOCAL_SRC_FILES_$($(my_prefix)OS)_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) |
Dan Willemsen | 7a54985 | 2015-08-13 17:51:40 -0700 | [diff] [blame] | 176 | my_static_libraries += $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)OS)) |
| 177 | my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)OS)) |
| 178 | my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)OS)) |
| 179 | my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)OS)) |
| 180 | my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)OS)) |
| 181 | my_ldlibs += $(LOCAL_LDLIBS_$($(my_prefix)OS)) |
| 182 | my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)OS)) |
| 183 | my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)OS)) |
| 184 | my_generated_sources += $(LOCAL_GENERATED_SOURCES_$($(my_prefix)OS)) |
| 185 | endif |
| 186 | |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 187 | my_src_files += $(LOCAL_SRC_FILES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SRC_FILES_$(my_32_64_bit_suffix)) |
Colin Cross | a04abc8 | 2015-06-30 12:21:59 -0700 | [diff] [blame] | 188 | my_src_files_exclude += $(LOCAL_SRC_FILES_EXCLUDE_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SRC_FILES_EXCLUDE_$(my_32_64_bit_suffix)) |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 189 | my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix)) |
| 190 | my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix)) |
| 191 | my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix)) |
| 192 | my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix)) |
| 193 | my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix)) |
| 194 | my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix)) |
| 195 | my_generated_sources += $(LOCAL_GENERATED_SOURCES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_GENERATED_SOURCES_$(my_32_64_bit_suffix)) |
Colin Cross | f4f2fbe | 2014-02-12 21:15:12 -0800 | [diff] [blame] | 196 | |
Dan Willemsen | c29172c | 2015-12-03 22:58:39 -0800 | [diff] [blame] | 197 | my_missing_exclude_files := $(filter-out $(my_src_files),$(my_src_files_exclude)) |
| 198 | ifneq ($(my_missing_exclude_files),) |
| 199 | $(warning Files are listed in LOCAL_SRC_FILES_EXCLUDE but not LOCAL_SRC_FILES) |
| 200 | $(error $(my_missing_exclude_files)) |
| 201 | endif |
Colin Cross | a04abc8 | 2015-06-30 12:21:59 -0700 | [diff] [blame] | 202 | my_src_files := $(filter-out $(my_src_files_exclude),$(my_src_files)) |
| 203 | |
Dan Albert | db905e7 | 2014-08-18 11:14:38 -0700 | [diff] [blame] | 204 | my_clang := $(strip $(LOCAL_CLANG)) |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 205 | ifdef LOCAL_CLANG_$(my_32_64_bit_suffix) |
Dan Albert | db905e7 | 2014-08-18 11:14:38 -0700 | [diff] [blame] | 206 | my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix))) |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 207 | endif |
| 208 | ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH) |
Dan Albert | db905e7 | 2014-08-18 11:14:38 -0700 | [diff] [blame] | 209 | my_clang := $(strip $(LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))) |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 210 | endif |
| 211 | |
Tim Murray | 92d79cb | 2014-04-04 14:38:29 -0700 | [diff] [blame] | 212 | # clang is enabled by default for host builds |
| 213 | # enable it unless we've specifically disabled clang above |
| 214 | ifdef LOCAL_IS_HOST_MODULE |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 215 | ifneq ($($(my_prefix)OS),windows) |
Tim Murray | 5ca1dc1 | 2014-07-24 14:42:53 -0700 | [diff] [blame] | 216 | ifeq ($(my_clang),) |
| 217 | my_clang := true |
| 218 | endif |
| 219 | endif |
Chih-Hung Hsieh | 3c8036d | 2015-12-10 14:13:43 -0800 | [diff] [blame] | 220 | # Add option to make gcc the default for device build |
| 221 | else ifeq ($(USE_CLANG_PLATFORM_BUILD),false) |
Dan Willemsen | 7728817 | 2015-09-09 15:45:21 -0700 | [diff] [blame] | 222 | ifeq ($(my_clang),) |
Chih-Hung Hsieh | 3c8036d | 2015-12-10 14:13:43 -0800 | [diff] [blame] | 223 | my_clang := false |
Dan Willemsen | 7728817 | 2015-09-09 15:45:21 -0700 | [diff] [blame] | 224 | endif |
Chih-Hung Hsieh | 3c8036d | 2015-12-10 14:13:43 -0800 | [diff] [blame] | 225 | else ifeq ($(my_clang),) |
| 226 | my_clang := true |
Dan Willemsen | 7728817 | 2015-09-09 15:45:21 -0700 | [diff] [blame] | 227 | endif |
| 228 | |
Dan Albert | c7d307d | 2015-07-29 15:13:57 -0700 | [diff] [blame] | 229 | my_cpp_std_version := -std=gnu++14 |
Dan Albert | da63739 | 2015-10-26 11:09:24 -0700 | [diff] [blame] | 230 | |
| 231 | ifneq ($(my_clang),true) |
| 232 | # GCC uses an invalid C++14 ABI (emits calls to |
| 233 | # __cxa_throw_bad_array_length, which is not a valid C++ RT ABI). |
| 234 | # http://b/25022512 |
| 235 | my_cpp_std_version := -std=gnu++11 |
| 236 | endif |
| 237 | |
Dan Albert | c7d307d | 2015-07-29 15:13:57 -0700 | [diff] [blame] | 238 | ifdef LOCAL_SDK_VERSION |
| 239 | # The NDK handles this itself. |
| 240 | my_cpp_std_version := |
| 241 | endif |
| 242 | |
| 243 | ifdef LOCAL_IS_HOST_MODULE |
| 244 | ifneq ($(my_clang),true) |
| 245 | # The host GCC doesn't support C++14 (and is deprecated, so likely |
| 246 | # never will). Build these modules with C++11. |
| 247 | my_cpp_std_version := -std=gnu++11 |
| 248 | endif |
| 249 | endif |
| 250 | |
| 251 | my_cppflags := $(my_cpp_std_version) $(my_cppflags) |
| 252 | |
Tim Murray | 06659bc | 2014-08-13 11:53:07 -0700 | [diff] [blame] | 253 | |
Colin Cross | f4f2fbe | 2014-02-12 21:15:12 -0800 | [diff] [blame] | 254 | # arch-specific static libraries go first so that generic ones can depend on them |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 255 | my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries) |
| 256 | my_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 Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 257 | |
Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 258 | include $(BUILD_SYSTEM)/cxx_stl_setup.mk |
Ying Wang | d90de32 | 2014-05-23 16:42:37 -0700 | [diff] [blame] | 259 | |
Ying Wang | 285045b | 2013-08-13 12:35:10 -0700 | [diff] [blame] | 260 | # Add static HAL libraries |
| 261 | ifdef LOCAL_HAL_STATIC_LIBRARIES |
| 262 | $(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \ |
| 263 | $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\ |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 264 | $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\ |
| 265 | $(eval my_static_libraries += $(lib).default))) |
Ying Wang | 285045b | 2013-08-13 12:35:10 -0700 | [diff] [blame] | 266 | b_lib := |
| 267 | endif |
| 268 | |
Nicolas Geoffray | b7c9f32 | 2015-09-25 13:54:09 +0100 | [diff] [blame] | 269 | ifneq ($(strip $(CUSTOM_$(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)LINKER)),) |
| 270 | my_linker := $(CUSTOM_$(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)LINKER) |
| 271 | else |
| 272 | my_linker := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_LINKER) |
| 273 | endif |
Evgenii Stepanov | 8f5e67a | 2015-07-10 18:06:51 -0700 | [diff] [blame] | 274 | |
Dan Albert | 4ae5d4b | 2014-10-31 16:23:08 -0700 | [diff] [blame] | 275 | include $(BUILD_SYSTEM)/config_sanitizers.mk |
Evgeniy Stepanov | 6cc9c06 | 2012-03-30 12:15:12 +0400 | [diff] [blame] | 276 | |
Shih-wei Liao | c8dfc16 | 2013-01-27 01:45:59 -0800 | [diff] [blame] | 277 | # Add in libcompiler_rt for all regular device builds |
Dan Albert | 30a9c35 | 2015-04-09 14:41:06 -0700 | [diff] [blame] | 278 | ifeq (,$(LOCAL_SDK_VERSION)$(WITHOUT_LIBCOMPILER_RT)) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 279 | my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES) |
Stephen Hines | c72f396 | 2012-06-11 14:53:34 -0700 | [diff] [blame] | 280 | endif |
| 281 | |
Jing Yu | 2dcc806 | 2009-09-21 16:31:50 -0700 | [diff] [blame] | 282 | #################################################### |
| 283 | ## Add FDO flags if FDO is turned on and supported |
Dehao Chen | 295a6d2 | 2014-09-19 10:18:12 -0700 | [diff] [blame] | 284 | ## Please note that we will do option filtering during FDO build. |
| 285 | ## i.e. Os->O2, remove -fno-early-inline and -finline-limit. |
| 286 | ################################################################## |
Ying Wang | 45d0143 | 2014-10-28 14:50:59 -0700 | [diff] [blame] | 287 | my_fdo_build := |
| 288 | ifneq ($(filter true always, $(LOCAL_FDO_SUPPORT)),) |
| 289 | ifeq ($(BUILD_FDO_INSTRUMENT),true) |
| 290 | my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_CFLAGS) |
| 291 | my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_LDFLAGS) |
| 292 | my_fdo_build := true |
| 293 | else ifneq ($(filter true,$(BUILD_FDO_OPTIMIZE))$(filter always,$(LOCAL_FDO_SUPPORT)),) |
| 294 | my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_OPTIMIZE_CFLAGS) |
| 295 | my_fdo_build := true |
synergydev | 4a60576 | 2013-08-05 02:44:37 -0700 | [diff] [blame] | 296 | endif |
Shinichiro Hamaji | 09295a8 | 2015-09-24 17:51:20 +0900 | [diff] [blame] | 297 | # Disable ccache (or other compiler wrapper) except gomacc, which |
| 298 | # can handle -fprofile-use properly. |
| 299 | my_cc_wrapper := $(filter $(GOMA_CC),$(my_cc_wrapper)) |
| 300 | my_cxx_wrapper := $(filter $(GOMA_CC),$(my_cxx_wrapper)) |
Jing Yu | 2dcc806 | 2009-09-21 16:31:50 -0700 | [diff] [blame] | 301 | endif |
| 302 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 303 | ########################################################### |
Jim Huang | 20d1ba6 | 2010-10-14 16:15:56 +0800 | [diff] [blame] | 304 | ## Explicitly declare assembly-only __ASSEMBLY__ macro for |
| 305 | ## assembly source |
| 306 | ########################################################### |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 307 | my_asflags += -D__ASSEMBLY__ |
Jim Huang | 20d1ba6 | 2010-10-14 16:15:56 +0800 | [diff] [blame] | 308 | |
Ying Wang | d8d3721 | 2014-03-21 16:17:04 -0700 | [diff] [blame] | 309 | |
Jim Huang | 20d1ba6 | 2010-10-14 16:15:56 +0800 | [diff] [blame] | 310 | ########################################################### |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 311 | ## Define PRIVATE_ variables from global vars |
| 312 | ########################################################### |
Ying Wang | 7fff9a1 | 2014-01-09 14:39:41 -0800 | [diff] [blame] | 313 | ifndef LOCAL_IS_HOST_MODULE |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 314 | ifdef LOCAL_SDK_VERSION |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 315 | my_target_project_includes := |
Andrew Hsieh | 140761af0 | 2014-04-25 23:47:10 -0700 | [diff] [blame] | 316 | my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_sysroot_include) |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 317 | my_target_global_cppflags := $(my_ndk_stl_cppflags) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 318 | else |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 319 | my_target_project_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES) |
| 320 | my_target_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_C_INCLUDES) |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 321 | my_target_global_cppflags := |
Ying Wang | f4723fa | 2013-08-15 11:01:10 -0700 | [diff] [blame] | 322 | endif # LOCAL_SDK_VERSION |
| 323 | |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 324 | ifeq ($(my_clang),true) |
Ying Wang | 1f98283 | 2014-02-06 18:08:44 -0800 | [diff] [blame] | 325 | my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CFLAGS) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 326 | my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CONLYFLAGS) |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 327 | my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CPPFLAGS) |
Ying Wang | 1f98283 | 2014-02-06 18:08:44 -0800 | [diff] [blame] | 328 | my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_LDFLAGS) |
Ying Wang | da4bf42 | 2012-08-16 16:45:01 -0700 | [diff] [blame] | 329 | else |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 330 | my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 331 | my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CONLYFLAGS) |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 332 | my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 333 | my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LDFLAGS) |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 334 | endif # my_clang |
Ying Wang | da4bf42 | 2012-08-16 16:45:01 -0700 | [diff] [blame] | 335 | |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 336 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes) |
Evgeniy Stepanov | a7095e9 | 2012-03-30 12:18:52 +0400 | [diff] [blame] | 337 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 338 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 339 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CONLYFLAGS := $(my_target_global_conlyflags) |
Logan Chien | e6f6543 | 2013-12-10 19:07:41 +0800 | [diff] [blame] | 340 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags) |
| 341 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags) |
| 342 | |
Ying Wang | 7fff9a1 | 2014-01-09 14:39:41 -0800 | [diff] [blame] | 343 | else # LOCAL_IS_HOST_MODULE |
| 344 | |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 345 | ifeq ($(my_clang),true) |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 346 | my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CFLAGS) |
| 347 | my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CONLYFLAGS) |
| 348 | my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CPPFLAGS) |
| 349 | my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_LDFLAGS) |
| 350 | my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)C_INCLUDES) |
Logan Chien | e6f6543 | 2013-12-10 19:07:41 +0800 | [diff] [blame] | 351 | else |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 352 | my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CFLAGS) |
| 353 | my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CONLYFLAGS) |
| 354 | my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CPPFLAGS) |
| 355 | my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_LDFLAGS) |
| 356 | my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)C_INCLUDES) |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 357 | endif # my_clang |
Logan Chien | e6f6543 | 2013-12-10 19:07:41 +0800 | [diff] [blame] | 358 | |
| 359 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_C_INCLUDES := $(my_host_c_includes) |
| 360 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 361 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CONLYFLAGS := $(my_host_global_conlyflags) |
Logan Chien | e6f6543 | 2013-12-10 19:07:41 +0800 | [diff] [blame] | 362 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags) |
| 363 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags) |
| 364 | endif # LOCAL_IS_HOST_MODULE |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 365 | |
Dan Albert | 43e128a | 2015-01-23 16:12:57 -0800 | [diff] [blame] | 366 | # To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and |
| 367 | # build with NATIVE_COVERAGE=true in your enviornment. Note that the build |
| 368 | # system is not sensitive to changes to NATIVE_COVERAGE, so you should do a |
| 369 | # clean build of your module after toggling it. |
| 370 | ifeq ($(NATIVE_COVERAGE),true) |
| 371 | ifeq ($(my_native_coverage),true) |
Dan Albert | 343ed67 | 2015-01-25 16:20:57 -0800 | [diff] [blame] | 372 | # Note that clang coverage doesn't play nicely with acov out of the box. |
| 373 | # Clang apparently generates .gcno files that aren't compatible with |
| 374 | # gcov-4.8. This can be solved by installing gcc-4.6 and invoking lcov |
| 375 | # with `--gcov-tool /usr/bin/gcov-4.6`. |
| 376 | # |
| 377 | # http://stackoverflow.com/questions/17758126/clang-code-coverage-invalid-output |
Dan Albert | 2c03e04 | 2015-01-24 15:14:35 -0800 | [diff] [blame] | 378 | my_cflags += --coverage -O0 |
Dan Albert | 343ed67 | 2015-01-25 16:20:57 -0800 | [diff] [blame] | 379 | my_ldflags += --coverage |
Dan Albert | 43e128a | 2015-01-23 16:12:57 -0800 | [diff] [blame] | 380 | endif |
| 381 | else |
| 382 | my_native_coverage := false |
| 383 | endif |
| 384 | |
Dan Albert | 7fbbc5d | 2015-10-08 14:16:39 -0700 | [diff] [blame] | 385 | ifeq ($(my_clang),true) |
| 386 | my_coverage_lib := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_LIBPROFILE_RT) |
| 387 | else |
| 388 | my_coverage_lib := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_LIBGCOV) |
| 389 | endif |
| 390 | |
| 391 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_COVERAGE_LIB := $(my_coverage_lib) |
| 392 | |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 393 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 394 | ## Define PRIVATE_ variables used by multiple module types |
| 395 | ########################################################### |
| 396 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 397 | $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 398 | |
Andrew Hsieh | 6cea59a | 2013-08-27 17:33:06 +0800 | [diff] [blame] | 399 | ifeq ($(strip $(WITH_SYNTAX_CHECK)),) |
| 400 | LOCAL_NO_SYNTAX_CHECK := true |
| 401 | endif |
| 402 | |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 403 | ifeq ($(strip $(WITH_STATIC_ANALYZER)),) |
| 404 | LOCAL_NO_STATIC_ANALYZER := true |
| 405 | endif |
| 406 | |
Andrew Hsieh | 6cea59a | 2013-08-27 17:33:06 +0800 | [diff] [blame] | 407 | ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),) |
| 408 | my_syntax_arch := host |
| 409 | else |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 410 | my_syntax_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH) |
Andrew Hsieh | 6cea59a | 2013-08-27 17:33:06 +0800 | [diff] [blame] | 411 | endif |
| 412 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 413 | ifeq ($(strip $(my_cc)),) |
Dan Albert | db905e7 | 2014-08-18 11:14:38 -0700 | [diff] [blame] | 414 | ifeq ($(my_clang),true) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 415 | my_cc := $(CLANG) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 416 | else |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 417 | my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 418 | endif |
Ying Wang | c671a7c | 2015-07-20 18:40:18 -0700 | [diff] [blame] | 419 | my_cc := $(my_cc_wrapper) $(my_cc) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 420 | endif |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 421 | ifneq ($(LOCAL_NO_STATIC_ANALYZER),true) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 422 | my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer $(my_syntax_arch) "$(my_cc)" |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 423 | else |
Andrew Hsieh | 6cea59a | 2013-08-27 17:33:06 +0800 | [diff] [blame] | 424 | ifneq ($(LOCAL_NO_SYNTAX_CHECK),true) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 425 | my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-syntax $(my_syntax_arch) "$(my_cc)" |
Andrew Hsieh | 6cea59a | 2013-08-27 17:33:06 +0800 | [diff] [blame] | 426 | endif |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 427 | endif |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 428 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 429 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 430 | ifeq ($(strip $(my_cxx)),) |
Dan Albert | db905e7 | 2014-08-18 11:14:38 -0700 | [diff] [blame] | 431 | ifeq ($(my_clang),true) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 432 | my_cxx := $(CLANG_CXX) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 433 | else |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 434 | my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 435 | endif |
Ying Wang | c671a7c | 2015-07-20 18:40:18 -0700 | [diff] [blame] | 436 | my_cxx := $(my_cxx_wrapper) $(my_cxx) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 437 | endif |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 438 | ifneq ($(LOCAL_NO_STATIC_ANALYZER),true) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 439 | my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-analyzer $(my_syntax_arch) "$(my_cxx)" |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 440 | else |
Andrew Hsieh | 6cea59a | 2013-08-27 17:33:06 +0800 | [diff] [blame] | 441 | ifneq ($(LOCAL_NO_SYNTAX_CHECK),true) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 442 | my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-syntax $(my_syntax_arch) "$(my_cxx)" |
Andrew Hsieh | 6cea59a | 2013-08-27 17:33:06 +0800 | [diff] [blame] | 443 | endif |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 444 | endif |
Evgenii Stepanov | 8f5e67a | 2015-07-10 18:06:51 -0700 | [diff] [blame] | 445 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LINKER := $(my_linker) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 446 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(my_cxx) |
Dan Albert | b6bb71b | 2014-08-05 14:44:41 -0700 | [diff] [blame] | 447 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 448 | |
| 449 | # TODO: support a mix of standard extensions so that this isn't necessary |
| 450 | LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION)) |
| 451 | ifeq ($(LOCAL_CPP_EXTENSION),) |
| 452 | LOCAL_CPP_EXTENSION := .cpp |
| 453 | endif |
| 454 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPP_EXTENSION := $(LOCAL_CPP_EXTENSION) |
| 455 | |
| 456 | # Certain modules like libdl have to have symbols resolved at runtime and blow |
| 457 | # up if --no-undefined is passed to the linker. |
| 458 | ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),) |
Dan Albert | b58fb4a | 2014-11-14 17:15:00 -0800 | [diff] [blame] | 459 | ifeq ($(my_allow_undefined_symbols),) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 460 | my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)NO_UNDEFINED_LDFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 461 | endif |
| 462 | endif |
| 463 | |
Ying Wang | fcdabd4 | 2011-04-25 14:22:41 -0700 | [diff] [blame] | 464 | ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES)) |
| 465 | $(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true |
| 466 | else |
| 467 | $(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := |
| 468 | endif |
| 469 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 470 | ########################################################### |
| 471 | ## Define arm-vs-thumb-mode flags. |
| 472 | ########################################################### |
| 473 | LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE)) |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 474 | ifeq ($($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 475 | arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm) |
| 476 | normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb) |
| 477 | |
Dave Bort | 9528248 | 2009-04-23 18:44:55 -0700 | [diff] [blame] | 478 | # Read the values from something like TARGET_arm_CFLAGS or |
| 479 | # TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't |
| 480 | # actually used (although they are usually empty). |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 481 | arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS) |
| 482 | normal_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(normal_objects_mode)_CFLAGS) |
Dan Albert | db905e7 | 2014-08-18 11:14:38 -0700 | [diff] [blame] | 483 | ifeq ($(my_clang),true) |
Ying Wang | 1f98283 | 2014-02-06 18:08:44 -0800 | [diff] [blame] | 484 | arm_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(arm_objects_cflags)) |
| 485 | normal_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(normal_objects_cflags)) |
Evgeniy Stepanov | f50f4c5 | 2012-04-05 11:44:37 +0400 | [diff] [blame] | 486 | endif |
| 487 | |
Chih-Wei Huang | 0d09e58 | 2010-07-09 10:07:52 +0800 | [diff] [blame] | 488 | else |
| 489 | arm_objects_mode := |
| 490 | normal_objects_mode := |
| 491 | arm_objects_cflags := |
| 492 | normal_objects_cflags := |
| 493 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 494 | |
| 495 | ########################################################### |
| 496 | ## Define per-module debugging flags. Users can turn on |
| 497 | ## debugging for a particular module by setting DEBUG_MODULE_ModuleName |
| 498 | ## to a non-empty value in their environment or buildspec.mk, |
| 499 | ## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the |
| 500 | ## debug flags that they want to use. |
| 501 | ########################################################### |
| 502 | ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE)) |
| 503 | debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS) |
| 504 | else |
| 505 | debug_cflags := |
| 506 | endif |
| 507 | |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 508 | #################################################### |
| 509 | ## Compile RenderScript with reflected C++ |
| 510 | #################################################### |
| 511 | |
Ying Wang | b8e0185 | 2014-01-23 15:09:04 -0800 | [diff] [blame] | 512 | renderscript_sources := $(filter %.rs %.fs,$(my_src_files)) |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 513 | |
| 514 | ifneq (,$(renderscript_sources)) |
| 515 | |
| 516 | renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources)) |
| 517 | RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp |
| 518 | renderscript_intermediate := $(intermediates)/renderscript |
| 519 | |
Noah Presler | 4796a8c | 2015-08-13 17:04:10 -0700 | [diff] [blame] | 520 | renderscript_target_api := |
| 521 | |
| 522 | ifneq (,$(LOCAL_RENDERSCRIPT_TARGET_API)) |
| 523 | renderscript_target_api := $(LOCAL_RENDERSCRIPT_TARGET_API) |
| 524 | else |
| 525 | ifneq (,$(LOCAL_SDK_VERSION)) |
| 526 | # Set target-api for LOCAL_SDK_VERSIONs other than current. |
| 527 | ifneq (,$(filter-out current system_current, $(LOCAL_SDK_VERSION))) |
| 528 | renderscript_target_api := $(LOCAL_SDK_VERSION) |
| 529 | endif |
| 530 | endif # LOCAL_SDK_VERSION is set |
| 531 | endif # LOCAL_RENDERSCRIPT_TARGET_API is set |
| 532 | |
| 533 | |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 534 | ifeq ($(LOCAL_RENDERSCRIPT_CC),) |
| 535 | LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC) |
| 536 | endif |
| 537 | |
| 538 | # Turn on all warnings and warnings as errors for RS compiles. |
| 539 | # This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error |
| 540 | renderscript_flags := -Wall -Werror |
| 541 | renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS) |
Ying Wang | acaada1 | 2014-09-10 16:11:41 -0700 | [diff] [blame] | 542 | # -m32 or -m64 |
| 543 | renderscript_flags += -m$(my_32_64_bit_suffix) |
Tim Murray | f0020c6 | 2014-09-10 15:11:01 -0700 | [diff] [blame] | 544 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 545 | renderscript_includes := \ |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 546 | $(TOPDIR)external/clang/lib/Headers \ |
| 547 | $(TOPDIR)frameworks/rs/scriptc \ |
| 548 | $(LOCAL_RENDERSCRIPT_INCLUDES) |
| 549 | |
| 550 | ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 551 | renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE) |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 552 | endif |
| 553 | |
Ying Wang | b931956 | 2015-04-03 16:15:28 -0700 | [diff] [blame] | 554 | bc_dep_files := $(addprefix $(renderscript_intermediate)/, \ |
| 555 | $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources))))) |
| 556 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 557 | $(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes) |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 558 | $(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC) |
| 559 | $(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags) |
| 560 | $(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath) |
| 561 | $(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate) |
Noah Presler | 4796a8c | 2015-08-13 17:04:10 -0700 | [diff] [blame] | 562 | $(RenderScript_file_stamp): PRIVATE_RS_TARGET_API := $(renderscript_target_api) |
Ying Wang | b931956 | 2015-04-03 16:15:28 -0700 | [diff] [blame] | 563 | $(RenderScript_file_stamp): PRIVATE_DEP_FILES := $(bc_dep_files) |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 564 | $(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC) |
| 565 | $(transform-renderscripts-to-cpp-and-bc) |
| 566 | |
Ying Wang | b931956 | 2015-04-03 16:15:28 -0700 | [diff] [blame] | 567 | # include the dependency files (.d/.P) generated by llvm-rs-cc. |
| 568 | -include $(bc_dep_files:%.d=%.P) |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 569 | |
| 570 | LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp) |
| 571 | |
| 572 | rs_generated_cpps := $(addprefix \ |
| 573 | $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \ |
| 574 | $(notdir $(renderscript_sources))))) |
| 575 | |
Stephen Hines | 8ff9252 | 2014-06-06 12:51:47 -0700 | [diff] [blame] | 576 | # This is just a dummy rule to make sure gmake doesn't skip updating the dependents. |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 577 | $(rs_generated_cpps) : $(RenderScript_file_stamp) |
Ying Wang | 81ab833 | 2014-05-28 16:17:09 -0700 | [diff] [blame] | 578 | @echo "Updated RS generated cpp file $@." |
Ying Wang | e25b398 | 2015-02-26 18:47:21 -0800 | [diff] [blame] | 579 | $(hide) touch $@ |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 580 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 581 | my_c_includes += $(renderscript_intermediate) |
| 582 | my_generated_sources += $(rs_generated_cpps) |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 583 | |
| 584 | endif |
| 585 | |
| 586 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 587 | ########################################################### |
| 588 | ## Stuff source generated from one-off tools |
| 589 | ########################################################### |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 590 | $(my_generated_sources): PRIVATE_MODULE := $(my_register_name) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 591 | |
Colin Cross | d826264 | 2014-01-24 23:17:21 -0800 | [diff] [blame] | 592 | my_gen_sources_copy := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(filter $(generated_sources_dir)/%,$(my_generated_sources))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 593 | |
Colin Cross | d826264 | 2014-01-24 23:17:21 -0800 | [diff] [blame] | 594 | $(my_gen_sources_copy): $(intermediates)/% : $(generated_sources_dir)/% | $(ACP) |
| 595 | @echo "Copy: $@" |
| 596 | $(copy-file-to-target) |
| 597 | |
| 598 | my_generated_sources := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(my_generated_sources)) |
| 599 | |
| 600 | ALL_GENERATED_SOURCES += $(my_generated_sources) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 601 | |
| 602 | ########################################################### |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 603 | ## Compile the .proto files to .cc (or .c) and then to .o |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 604 | ########################################################### |
Ying Wang | b8e0185 | 2014-01-23 15:09:04 -0800 | [diff] [blame] | 605 | proto_sources := $(filter %.proto,$(my_src_files)) |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 606 | proto_generated_objects := |
| 607 | proto_generated_headers := |
| 608 | ifneq ($(proto_sources),) |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 609 | proto_generated_sources_dir := $(generated_sources_dir)/proto |
Ying Wang | ead8944 | 2014-02-25 11:18:40 -0800 | [diff] [blame] | 610 | proto_generated_obj_dir := $(intermediates)/proto |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 611 | |
| 612 | ifneq (,$(filter nanopb-c nanopb-c-enable_malloc, $(LOCAL_PROTOC_OPTIMIZE_TYPE))) |
| 613 | my_proto_source_suffix := .c |
| 614 | my_proto_c_includes := external/nanopb-c |
| 615 | my_protoc_flags := --nanopb_out=$(proto_generated_sources_dir) \ |
| 616 | --plugin=external/nanopb-c/generator/protoc-gen-nanopb |
| 617 | else |
| 618 | my_proto_source_suffix := .cc |
| 619 | my_proto_c_includes := external/protobuf/src |
| 620 | my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI |
| 621 | my_protoc_flags := --cpp_out=$(proto_generated_sources_dir) |
| 622 | endif |
| 623 | my_proto_c_includes += $(proto_generated_sources_dir) |
| 624 | |
| 625 | proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources)) |
| 626 | proto_generated_sources := $(addprefix $(proto_generated_sources_dir)/, \ |
| 627 | $(patsubst %.proto,%.pb$(my_proto_source_suffix),$(proto_sources_fullpath))) |
| 628 | proto_generated_headers := $(patsubst %.pb$(my_proto_source_suffix),%.pb.h, $(proto_generated_sources)) |
Ying Wang | ead8944 | 2014-02-25 11:18:40 -0800 | [diff] [blame] | 629 | proto_generated_objects := $(addprefix $(proto_generated_obj_dir)/, \ |
| 630 | $(patsubst %.proto,%.pb.o,$(proto_sources_fullpath))) |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 631 | |
Ying Wang | ead8944 | 2014-02-25 11:18:40 -0800 | [diff] [blame] | 632 | # Ensure the transform-proto-to-cc rule is only defined once in multilib build. |
| 633 | ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 634 | $(proto_generated_sources): PRIVATE_PROTO_INCLUDES := $(TOP) |
| 635 | $(proto_generated_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS) $(my_protoc_flags) |
| 636 | $(proto_generated_sources): $(proto_generated_sources_dir)/%.pb$(my_proto_source_suffix): %.proto $(PROTOC) |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 637 | $(transform-proto-to-cc) |
| 638 | |
Stephen Hines | 8ff9252 | 2014-06-06 12:51:47 -0700 | [diff] [blame] | 639 | # This is just a dummy rule to make sure gmake doesn't skip updating the dependents. |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 640 | $(proto_generated_headers): $(proto_generated_sources_dir)/%.pb.h: $(proto_generated_sources_dir)/%.pb$(my_proto_source_suffix) |
Ying Wang | 81ab833 | 2014-05-28 16:17:09 -0700 | [diff] [blame] | 641 | @echo "Updated header file $@." |
Ying Wang | e25b398 | 2015-02-26 18:47:21 -0800 | [diff] [blame] | 642 | $(hide) touch $@ |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 643 | |
Ying Wang | ead8944 | 2014-02-25 11:18:40 -0800 | [diff] [blame] | 644 | $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true |
| 645 | endif # transform-proto-to-cc rule included only once |
| 646 | |
Ying Wang | 022a7b3 | 2012-06-13 11:38:10 -0700 | [diff] [blame] | 647 | $(proto_generated_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 648 | $(proto_generated_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 649 | $(proto_generated_objects): $(proto_generated_obj_dir)/%.o: $(proto_generated_sources_dir)/%$(my_proto_source_suffix) $(proto_generated_headers) |
| 650 | ifeq ($(my_proto_source_suffix),.c) |
| 651 | $(transform-$(PRIVATE_HOST)c-to-o) |
| 652 | else |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 653 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 654 | endif |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 655 | -include $(proto_generated_objects:%.o=%.P) |
| 656 | |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 657 | my_c_includes += $(my_proto_c_includes) |
| 658 | # Auto-export the generated proto source dir. |
| 659 | my_export_c_include_dirs += $(my_proto_c_includes) |
| 660 | |
| 661 | ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c-enable_malloc) |
Ying Wang | 8a0d53e | 2015-04-08 09:54:34 -0700 | [diff] [blame] | 662 | my_static_libraries += libprotobuf-c-nano-enable_malloc |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 663 | else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c) |
Ying Wang | 8a0d53e | 2015-04-08 09:54:34 -0700 | [diff] [blame] | 664 | my_static_libraries += libprotobuf-c-nano |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 665 | else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full) |
Dan Albert | c3031c7 | 2014-11-11 10:42:17 -0800 | [diff] [blame] | 666 | ifdef LOCAL_SDK_VERSION |
Dan Albert | a187fb5 | 2015-09-08 10:47:03 -0700 | [diff] [blame] | 667 | my_static_libraries += libprotobuf-cpp-full-ndk |
Dan Albert | c3031c7 | 2014-11-11 10:42:17 -0800 | [diff] [blame] | 668 | else |
| 669 | my_shared_libraries += libprotobuf-cpp-full |
| 670 | endif |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 671 | else |
Dan Albert | c3031c7 | 2014-11-11 10:42:17 -0800 | [diff] [blame] | 672 | ifdef LOCAL_SDK_VERSION |
Dan Albert | a187fb5 | 2015-09-08 10:47:03 -0700 | [diff] [blame] | 673 | my_static_libraries += libprotobuf-cpp-lite-ndk |
Dan Albert | c3031c7 | 2014-11-11 10:42:17 -0800 | [diff] [blame] | 674 | else |
| 675 | my_shared_libraries += libprotobuf-cpp-lite |
| 676 | endif |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 677 | endif |
Ying Wang | ead8944 | 2014-02-25 11:18:40 -0800 | [diff] [blame] | 678 | endif # $(proto_sources) non-empty |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 679 | |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 680 | ########################################################### |
Christopher Wiley | 9b17dea | 2015-08-20 09:08:17 -0700 | [diff] [blame] | 681 | ## Compile the .dbus-xml files to c++ headers |
Christopher Wiley | bc2be46 | 2015-07-29 17:14:24 -0700 | [diff] [blame] | 682 | ########################################################### |
Christopher Wiley | 9b17dea | 2015-08-20 09:08:17 -0700 | [diff] [blame] | 683 | dbus_definitions := $(filter %.dbus-xml,$(my_src_files)) |
Christopher Wiley | 529f176 | 2015-08-14 14:55:32 -0700 | [diff] [blame] | 684 | dbus_generated_headers := |
| 685 | ifneq ($(dbus_definitions),) |
Christopher Wiley | bc2be46 | 2015-07-29 17:14:24 -0700 | [diff] [blame] | 686 | |
Christopher Wiley | 529f176 | 2015-08-14 14:55:32 -0700 | [diff] [blame] | 687 | dbus_definition_paths := $(addprefix $(LOCAL_PATH)/,$(dbus_definitions)) |
Christopher Wiley | bc2be46 | 2015-07-29 17:14:24 -0700 | [diff] [blame] | 688 | dbus_service_config := $(filter %dbus-service-config.json,$(my_src_files)) |
Christopher Wiley | 529f176 | 2015-08-14 14:55:32 -0700 | [diff] [blame] | 689 | dbus_service_config_path := $(addprefix $(LOCAL_PATH)/,$(dbus_service_config)) |
Christopher Wiley | bc2be46 | 2015-07-29 17:14:24 -0700 | [diff] [blame] | 690 | |
Christopher Wiley | 529f176 | 2015-08-14 14:55:32 -0700 | [diff] [blame] | 691 | dbus_gen_dir := $(generated_sources_dir)/dbus_bindings |
Christopher Wiley | bc2be46 | 2015-07-29 17:14:24 -0700 | [diff] [blame] | 692 | |
Christopher Wiley | 529f176 | 2015-08-14 14:55:32 -0700 | [diff] [blame] | 693 | ifdef LOCAL_DBUS_PROXY_PREFIX |
| 694 | dbus_header_dir := $(dbus_gen_dir)/include/$(LOCAL_DBUS_PROXY_PREFIX) |
| 695 | dbus_headers := dbus-proxies.h |
| 696 | else |
| 697 | dbus_header_dir := $(dbus_gen_dir) |
Christopher Wiley | 9b17dea | 2015-08-20 09:08:17 -0700 | [diff] [blame] | 698 | dbus_headers := $(patsubst %.dbus-xml,%.h,$(dbus_definitions)) |
Christopher Wiley | 529f176 | 2015-08-14 14:55:32 -0700 | [diff] [blame] | 699 | endif |
| 700 | dbus_generated_headers := $(addprefix $(dbus_header_dir)/,$(dbus_headers)) |
Christopher Wiley | bc2be46 | 2015-07-29 17:14:24 -0700 | [diff] [blame] | 701 | |
| 702 | # Ensure that we only define build rules once in multilib builds. |
| 703 | ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined |
| 704 | $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined := true |
Christopher Wiley | 529f176 | 2015-08-14 14:55:32 -0700 | [diff] [blame] | 705 | |
| 706 | $(dbus_generated_headers): PRIVATE_MODULE := $(LOCAL_MODULE) |
| 707 | $(dbus_generated_headers): PRIVATE_DBUS_SERVICE_CONFIG := $(dbus_service_config_path) |
| 708 | $(dbus_generated_headers) : $(dbus_service_config_path) $(DBUS_GENERATOR) |
| 709 | ifdef LOCAL_DBUS_PROXY_PREFIX |
| 710 | $(dbus_generated_headers) : $(dbus_definition_paths) |
| 711 | $(generate-dbus-proxies) |
Peter Qiu | 425e019 | 2015-10-14 16:46:41 -0700 | [diff] [blame] | 712 | else |
| 713 | $(dbus_generated_headers) : $(dbus_header_dir)/%.h : $(LOCAL_PATH)/%.dbus-xml |
| 714 | $(generate-dbus-adaptors) |
| 715 | endif # $(LOCAL_DBUS_PROXY_PREFIX) |
| 716 | endif # $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined |
Christopher Wiley | 529f176 | 2015-08-14 14:55:32 -0700 | [diff] [blame] | 717 | |
Peter Qiu | 425e019 | 2015-10-14 16:46:41 -0700 | [diff] [blame] | 718 | ifdef LOCAL_DBUS_PROXY_PREFIX |
Christopher Wiley | 529f176 | 2015-08-14 14:55:32 -0700 | [diff] [blame] | 719 | # Auto-export the generated dbus proxy directory. |
| 720 | my_export_c_include_dirs += $(dbus_gen_dir)/include |
| 721 | my_c_includes += $(dbus_gen_dir)/include |
| 722 | else |
Christopher Wiley | 529f176 | 2015-08-14 14:55:32 -0700 | [diff] [blame] | 723 | my_export_c_include_dirs += $(dbus_header_dir) |
| 724 | my_c_includes += $(dbus_header_dir) |
| 725 | endif # $(LOCAL_DBUS_PROXY_PREFIX) |
Christopher Wiley | bc2be46 | 2015-07-29 17:14:24 -0700 | [diff] [blame] | 726 | |
Christopher Wiley | 529f176 | 2015-08-14 14:55:32 -0700 | [diff] [blame] | 727 | my_generated_sources += $(dbus_generated_headers) |
| 728 | |
| 729 | endif # $(dbus_definitions) non-empty |
Christopher Wiley | bc2be46 | 2015-07-29 17:14:24 -0700 | [diff] [blame] | 730 | |
| 731 | |
| 732 | ########################################################### |
Christopher Wiley | 2df75d1 | 2015-10-14 17:27:24 -0700 | [diff] [blame] | 733 | ## AIDL: Compile .aidl files to .cpp and .h files |
| 734 | ########################################################### |
| 735 | aidl_src := $(strip $(filter %.aidl,$(my_src_files))) |
| 736 | aidl_gen_cpp := |
| 737 | ifneq ($(aidl_src),) |
| 738 | |
| 739 | aidl_gen_cpp_root := $(intermediates)/aidl-generated/src |
| 740 | aidl_gen_include_root := $(intermediates)/aidl-generated/include |
| 741 | |
| 742 | aidl_gen_cpp := $(patsubst %.aidl,%$(LOCAL_CPP_EXTENSION),$(aidl_src)) |
| 743 | aidl_gen_cpp := $(addprefix $(aidl_gen_cpp_root)/,$(aidl_gen_cpp)) |
| 744 | |
| 745 | # TODO(wiley): we could pass down a flag here to only generate the server or |
| 746 | # client side of the binder interface. |
| 747 | $(aidl_gen_cpp) : PRIVATE_MODULE := $(LOCAL_MODULE) |
| 748 | $(aidl_gen_cpp) : PRIVATE_HEADER_OUTPUT_DIR := $(aidl_gen_include_root) |
| 749 | $(aidl_gen_cpp) : PRIVATE_AIDL_FLAGS := $(addprefix -I,$(LOCAL_AIDL_INCLUDES)) |
| 750 | |
| 751 | # Multi-architecture builds have distinct intermediates directories. |
| 752 | # Define rules for both architectures. |
| 753 | $(aidl_gen_cpp) : $(aidl_gen_cpp_root)/%$(LOCAL_CPP_EXTENSION) : $(LOCAL_PATH)/%.aidl $(AIDL_CPP) |
| 754 | $(transform-aidl-to-cpp) |
| 755 | -include $(addsuffix .P,$(basename $(aidl_gen_cpp))) |
| 756 | |
Christopher Wiley | c7e936f | 2015-11-19 07:06:01 -0800 | [diff] [blame] | 757 | # Add generated headers to include paths. |
Christopher Wiley | 2df75d1 | 2015-10-14 17:27:24 -0700 | [diff] [blame] | 758 | my_c_includes += $(aidl_gen_include_root) |
Christopher Wiley | c7e936f | 2015-11-19 07:06:01 -0800 | [diff] [blame] | 759 | my_export_c_include_dirs += $(aidl_gen_include_root) |
Christopher Wiley | 2df75d1 | 2015-10-14 17:27:24 -0700 | [diff] [blame] | 760 | # Pick up the generated C++ files later for transformation to .o files. |
| 761 | my_generated_sources += $(aidl_gen_cpp) |
| 762 | |
| 763 | endif # $(aidl_src) non-empty |
| 764 | |
| 765 | ########################################################### |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 766 | ## YACC: Compile .y and .yy files to .cpp and the to .o. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 767 | ########################################################### |
| 768 | |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 769 | y_yacc_sources := $(filter %.y,$(my_src_files)) |
| 770 | y_yacc_cpps := $(addprefix \ |
| 771 | $(intermediates)/,$(y_yacc_sources:.y=$(LOCAL_CPP_EXTENSION))) |
| 772 | |
| 773 | yy_yacc_sources := $(filter %.yy,$(my_src_files)) |
| 774 | yy_yacc_cpps := $(addprefix \ |
| 775 | $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION))) |
| 776 | |
| 777 | yacc_cpps := $(y_yacc_cpps) $(yy_yacc_cpps) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 778 | yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h) |
| 779 | yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o) |
| 780 | |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 781 | ifneq ($(strip $(y_yacc_cpps)),) |
| 782 | $(y_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 783 | $(TOPDIR)$(LOCAL_PATH)/%.y \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 784 | $(lex_cpps) $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 785 | $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION)) |
| 786 | $(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION) |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 787 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 788 | |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 789 | ifneq ($(strip $(yy_yacc_cpps)),) |
| 790 | $(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \ |
| 791 | $(TOPDIR)$(LOCAL_PATH)/%.yy \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 792 | $(lex_cpps) $(my_additional_dependencies) |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 793 | $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION)) |
| 794 | $(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION) |
| 795 | endif |
| 796 | |
| 797 | ifneq ($(strip $(yacc_cpps)),) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 798 | $(yacc_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 799 | $(yacc_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
| 800 | $(yacc_objects): $(intermediates)/%.o: $(intermediates)/%$(LOCAL_CPP_EXTENSION) |
| 801 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 802 | endif |
| 803 | |
| 804 | ########################################################### |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 805 | ## LEX: Compile .l and .ll files to .cpp and then to .o. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 806 | ########################################################### |
| 807 | |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 808 | l_lex_sources := $(filter %.l,$(my_src_files)) |
| 809 | l_lex_cpps := $(addprefix \ |
| 810 | $(intermediates)/,$(l_lex_sources:.l=$(LOCAL_CPP_EXTENSION))) |
| 811 | |
| 812 | ll_lex_sources := $(filter %.ll,$(my_src_files)) |
| 813 | ll_lex_cpps := $(addprefix \ |
| 814 | $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION))) |
| 815 | |
| 816 | lex_cpps := $(l_lex_cpps) $(ll_lex_cpps) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 817 | lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o) |
| 818 | |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 819 | ifneq ($(strip $(l_lex_cpps)),) |
| 820 | $(l_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 821 | $(TOPDIR)$(LOCAL_PATH)/%.l |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 822 | $(transform-l-to-cpp) |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 823 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 824 | |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 825 | ifneq ($(strip $(ll_lex_cpps)),) |
| 826 | $(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \ |
| 827 | $(TOPDIR)$(LOCAL_PATH)/%.ll |
| 828 | $(transform-l-to-cpp) |
| 829 | endif |
| 830 | |
| 831 | ifneq ($(strip $(lex_cpps)),) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 832 | $(lex_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 833 | $(lex_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
| 834 | $(lex_objects): $(intermediates)/%.o: \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 835 | $(intermediates)/%$(LOCAL_CPP_EXTENSION) \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 836 | $(my_additional_dependencies) \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 837 | $(yacc_headers) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 838 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 839 | endif |
| 840 | |
| 841 | ########################################################### |
| 842 | ## C++: Compile .cpp files to .o. |
| 843 | ########################################################### |
| 844 | |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 845 | # we also do this on host modules, even though |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 846 | # it's not really arm, because there are files that are shared. |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 847 | cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(my_src_files))) |
| 848 | dotdot_arm_sources := $(filter ../%,$(cpp_arm_sources)) |
| 849 | cpp_arm_sources := $(filter-out ../%,$(cpp_arm_sources)) |
| 850 | cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 851 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 852 | # For source files starting with ../, we remove all the ../ in the object file path, |
| 853 | # to avoid object file escaping the intermediate directory. |
| 854 | dotdot_arm_objects := |
| 855 | $(foreach s,$(dotdot_arm_sources),\ |
| 856 | $(eval $(call compile-dotdot-cpp-file,$(s),\ |
| 857 | $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\ |
| 858 | dotdot_arm_objects))) |
| 859 | |
| 860 | dotdot_sources := $(filter ../%$(LOCAL_CPP_EXTENSION),$(my_src_files)) |
| 861 | dotdot_objects := |
| 862 | $(foreach s,$(dotdot_sources),\ |
| 863 | $(eval $(call compile-dotdot-cpp-file,$(s),\ |
| 864 | $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\ |
| 865 | dotdot_objects))) |
| 866 | |
| 867 | cpp_normal_sources := $(filter-out ../%,$(filter %$(LOCAL_CPP_EXTENSION),$(my_src_files))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 868 | cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o)) |
| 869 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 870 | $(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode) |
| 871 | $(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags) |
| 872 | $(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 873 | $(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 874 | |
| 875 | cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects) |
| 876 | |
| 877 | ifneq ($(strip $(cpp_objects)),) |
| 878 | $(cpp_objects): $(intermediates)/%.o: \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 879 | $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \ |
Ying Wang | 9c3aa05 | 2013-02-20 13:34:05 -0800 | [diff] [blame] | 880 | $(yacc_cpps) $(proto_generated_headers) \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 881 | $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 882 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 883 | -include $(cpp_objects:%.o=%.P) |
| 884 | endif |
| 885 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 886 | cpp_objects += $(dotdot_arm_objects) $(dotdot_objects) |
| 887 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 888 | ########################################################### |
| 889 | ## C++: Compile generated .cpp files to .o. |
| 890 | ########################################################### |
| 891 | |
Ying Wang | ec6d626 | 2014-01-16 16:21:03 -0800 | [diff] [blame] | 892 | gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_generated_sources)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 893 | gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o) |
| 894 | |
| 895 | ifneq ($(strip $(gen_cpp_objects)),) |
| 896 | # Compile all generated files as thumb. |
| 897 | # TODO: support compiling certain generated files as arm. |
| 898 | $(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 899 | $(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 900 | $(gen_cpp_objects): $(intermediates)/%.o: \ |
| 901 | $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \ |
Ying Wang | 9c3aa05 | 2013-02-20 13:34:05 -0800 | [diff] [blame] | 902 | $(proto_generated_headers) \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 903 | $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 904 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 905 | -include $(gen_cpp_objects:%.o=%.P) |
| 906 | endif |
| 907 | |
| 908 | ########################################################### |
| 909 | ## S: Compile generated .S and .s files to .o. |
| 910 | ########################################################### |
| 911 | |
Ying Wang | ec6d626 | 2014-01-16 16:21:03 -0800 | [diff] [blame] | 912 | gen_S_sources := $(filter %.S,$(my_generated_sources)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 913 | gen_S_objects := $(gen_S_sources:%.S=%.o) |
| 914 | |
| 915 | ifneq ($(strip $(gen_S_sources)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 916 | $(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 917 | $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 918 | $(transform-$(PRIVATE_HOST)s-to-o) |
| 919 | -include $(gen_S_objects:%.o=%.P) |
| 920 | endif |
| 921 | |
Ying Wang | ec6d626 | 2014-01-16 16:21:03 -0800 | [diff] [blame] | 922 | gen_s_sources := $(filter %.s,$(my_generated_sources)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 923 | gen_s_objects := $(gen_s_sources:%.s=%.o) |
| 924 | |
| 925 | ifneq ($(strip $(gen_s_objects)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 926 | $(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 927 | $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 928 | $(transform-$(PRIVATE_HOST)s-to-o-no-deps) |
| 929 | -include $(gen_s_objects:%.o=%.P) |
| 930 | endif |
| 931 | |
| 932 | gen_asm_objects := $(gen_S_objects) $(gen_s_objects) |
| 933 | |
| 934 | ########################################################### |
Torne (Richard Coles) | aace202 | 2013-02-21 14:01:35 +0000 | [diff] [blame] | 935 | ## o: Include generated .o files in output. |
| 936 | ########################################################### |
| 937 | |
Ying Wang | ec6d626 | 2014-01-16 16:21:03 -0800 | [diff] [blame] | 938 | gen_o_objects := $(filter %.o,$(my_generated_sources)) |
Torne (Richard Coles) | aace202 | 2013-02-21 14:01:35 +0000 | [diff] [blame] | 939 | |
| 940 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 941 | ## C: Compile .c files to .o. |
| 942 | ########################################################### |
| 943 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 944 | c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files))) |
| 945 | dotdot_arm_sources := $(filter ../%,$(c_arm_sources)) |
| 946 | c_arm_sources := $(filter-out ../%,$(c_arm_sources)) |
| 947 | c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 948 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 949 | # For source files starting with ../, we remove all the ../ in the object file path, |
| 950 | # to avoid object file escaping the intermediate directory. |
| 951 | dotdot_arm_objects := |
| 952 | $(foreach s,$(dotdot_arm_sources),\ |
| 953 | $(eval $(call compile-dotdot-c-file,$(s),\ |
| 954 | $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\ |
| 955 | dotdot_arm_objects))) |
| 956 | |
| 957 | dotdot_sources := $(filter ../%.c, $(my_src_files)) |
| 958 | dotdot_objects := |
| 959 | $(foreach s, $(dotdot_sources),\ |
| 960 | $(eval $(call compile-dotdot-c-file,$(s),\ |
| 961 | $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\ |
| 962 | dotdot_objects))) |
| 963 | |
| 964 | c_normal_sources := $(filter-out ../%,$(filter %.c,$(my_src_files))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 965 | c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o)) |
| 966 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 967 | $(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode) |
| 968 | $(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags) |
| 969 | $(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 970 | $(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 971 | |
| 972 | c_objects := $(c_arm_objects) $(c_normal_objects) |
| 973 | |
| 974 | ifneq ($(strip $(c_objects)),) |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 975 | $(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c $(yacc_cpps) $(proto_generated_headers) \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 976 | $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 977 | $(transform-$(PRIVATE_HOST)c-to-o) |
| 978 | -include $(c_objects:%.o=%.P) |
| 979 | endif |
| 980 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 981 | c_objects += $(dotdot_arm_objects) $(dotdot_objects) |
| 982 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 983 | ########################################################### |
Jack Palevich | e7b3e2c | 2009-05-04 14:32:44 -0700 | [diff] [blame] | 984 | ## C: Compile generated .c files to .o. |
| 985 | ########################################################### |
| 986 | |
Ying Wang | ec6d626 | 2014-01-16 16:21:03 -0800 | [diff] [blame] | 987 | gen_c_sources := $(filter %.c,$(my_generated_sources)) |
Jack Palevich | e7b3e2c | 2009-05-04 14:32:44 -0700 | [diff] [blame] | 988 | gen_c_objects := $(gen_c_sources:%.c=%.o) |
| 989 | |
| 990 | ifneq ($(strip $(gen_c_objects)),) |
| 991 | # Compile all generated files as thumb. |
| 992 | # TODO: support compiling certain generated files as arm. |
| 993 | $(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 994 | $(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 995 | $(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 996 | $(my_additional_dependencies) |
Jack Palevich | e7b3e2c | 2009-05-04 14:32:44 -0700 | [diff] [blame] | 997 | $(transform-$(PRIVATE_HOST)c-to-o) |
| 998 | -include $(gen_c_objects:%.o=%.P) |
| 999 | endif |
| 1000 | |
| 1001 | ########################################################### |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 1002 | ## ObjC: Compile .m files to .o |
| 1003 | ########################################################### |
| 1004 | |
Ying Wang | b8e0185 | 2014-01-23 15:09:04 -0800 | [diff] [blame] | 1005 | objc_sources := $(filter %.m,$(my_src_files)) |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 1006 | objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o)) |
| 1007 | |
| 1008 | ifneq ($(strip $(objc_objects)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 1009 | $(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m $(yacc_cpps) $(proto_generated_headers) \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 1010 | $(my_additional_dependencies) |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 1011 | $(transform-$(PRIVATE_HOST)m-to-o) |
| 1012 | -include $(objc_objects:%.o=%.P) |
| 1013 | endif |
| 1014 | |
| 1015 | ########################################################### |
Scott James Remnant | dd86e5a | 2015-09-17 15:40:49 -0700 | [diff] [blame] | 1016 | ## ObjC++: Compile .mm files to .o |
| 1017 | ########################################################### |
| 1018 | |
| 1019 | objcpp_sources := $(filter %.mm,$(my_src_files)) |
| 1020 | objcpp_objects := $(addprefix $(intermediates)/,$(objcpp_sources:.mm=.o)) |
| 1021 | |
| 1022 | ifneq ($(strip $(objcpp_objects)),) |
| 1023 | $(objcpp_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.mm $(yacc_cpps) $(proto_generated_headers) \ |
| 1024 | $(my_additional_dependencies) |
| 1025 | $(transform-$(PRIVATE_HOST)mm-to-o) |
| 1026 | -include $(objcpp_objects:%.o=%.P) |
| 1027 | endif |
| 1028 | |
| 1029 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1030 | ## AS: Compile .S files to .o. |
| 1031 | ########################################################### |
| 1032 | |
Ying Wang | b8e0185 | 2014-01-23 15:09:04 -0800 | [diff] [blame] | 1033 | asm_sources_S := $(filter %.S,$(my_src_files)) |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 1034 | dotdot_sources := $(filter ../%,$(asm_sources_S)) |
| 1035 | asm_sources_S := $(filter-out ../%,$(asm_sources_S)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1036 | asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o)) |
| 1037 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 1038 | dotdot_objects_S := |
| 1039 | $(foreach s,$(dotdot_sources),\ |
| 1040 | $(eval $(call compile-dotdot-s-file,$(s),\ |
| 1041 | $(my_additional_dependencies),\ |
| 1042 | dotdot_objects_S))) |
| 1043 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1044 | ifneq ($(strip $(asm_objects_S)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 1045 | $(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 1046 | $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1047 | $(transform-$(PRIVATE_HOST)s-to-o) |
| 1048 | -include $(asm_objects_S:%.o=%.P) |
| 1049 | endif |
| 1050 | |
Ying Wang | b8e0185 | 2014-01-23 15:09:04 -0800 | [diff] [blame] | 1051 | asm_sources_s := $(filter %.s,$(my_src_files)) |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 1052 | dotdot_sources := $(filter ../%,$(asm_sources_s)) |
| 1053 | asm_sources_s := $(filter-out ../%,$(asm_sources_s)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1054 | asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o)) |
| 1055 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 1056 | dotdot_objects_s := |
| 1057 | $(foreach s,$(dotdot_sources),\ |
| 1058 | $(eval $(call compile-dotdot-s-file-no-deps,$(s),\ |
| 1059 | $(my_additional_dependencies),\ |
| 1060 | dotdot_objects_s))) |
| 1061 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1062 | ifneq ($(strip $(asm_objects_s)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 1063 | $(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 1064 | $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1065 | $(transform-$(PRIVATE_HOST)s-to-o-no-deps) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1066 | endif |
| 1067 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 1068 | asm_objects := $(dotdot_objects_S) $(dotdot_objects_s) $(asm_objects_S) $(asm_objects_s) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1069 | |
| 1070 | |
Ying Wang | fe1e5c3 | 2015-03-09 18:57:40 -0700 | [diff] [blame] | 1071 | # .asm for x86/x86_64 needs to be compiled with yasm. |
Ying Wang | 7b913ce | 2014-06-05 19:05:47 -0700 | [diff] [blame] | 1072 | asm_sources_asm := $(filter %.asm,$(my_src_files)) |
| 1073 | ifneq ($(strip $(asm_sources_asm)),) |
| 1074 | asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o)) |
| 1075 | $(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 1076 | $(my_additional_dependencies) |
Ying Wang | 7b913ce | 2014-06-05 19:05:47 -0700 | [diff] [blame] | 1077 | $(transform-asm-to-o) |
| 1078 | |
| 1079 | asm_objects += $(asm_objects_asm) |
| 1080 | endif |
Ying Wang | 7b913ce | 2014-06-05 19:05:47 -0700 | [diff] [blame] | 1081 | |
Jeff Davidson | 680f071 | 2015-01-08 18:25:30 -0800 | [diff] [blame] | 1082 | |
| 1083 | ########################################################## |
| 1084 | ## Set up installed module dependency |
| 1085 | ## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for |
| 1086 | ## they may cusomize their install path with LOCAL_MODULE_PATH |
| 1087 | ########################################################## |
| 1088 | # Get the list of INSTALLED libraries as module names. |
| 1089 | ifdef LOCAL_SDK_VERSION |
| 1090 | installed_shared_library_module_names := \ |
| 1091 | $(my_shared_libraries) |
| 1092 | else |
| 1093 | installed_shared_library_module_names := \ |
| 1094 | $(my_shared_libraries) $(my_system_shared_libraries) |
| 1095 | endif |
| 1096 | |
| 1097 | # The real dependency will be added after all Android.mks are loaded and the install paths |
| 1098 | # of the shared libraries are determined. |
| 1099 | ifdef LOCAL_INSTALLED_MODULE |
| 1100 | ifdef installed_shared_library_module_names |
| 1101 | $(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \ |
| 1102 | $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names))) |
| 1103 | endif |
| 1104 | endif |
| 1105 | |
| 1106 | |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 1107 | #################################################### |
| 1108 | ## Import includes |
| 1109 | #################################################### |
| 1110 | import_includes := $(intermediates)/import_includes |
| 1111 | import_includes_deps := $(strip \ |
| 1112 | $(foreach l, $(installed_shared_library_module_names), \ |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 1113 | $(call intermediates-dir-for,SHARED_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/export_includes) \ |
Colin Cross | 90353fe | 2014-02-04 14:53:25 -0800 | [diff] [blame] | 1114 | $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \ |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 1115 | $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/export_includes)) |
Ying Wang | 14d02a3 | 2015-01-22 15:44:04 -0800 | [diff] [blame] | 1116 | $(import_includes): PRIVATE_IMPORT_EXPORT_INCLUDES := $(import_includes_deps) |
Colin Cross | a4447e8 | 2015-09-28 16:26:00 -0700 | [diff] [blame] | 1117 | $(import_includes) : $(LOCAL_MODULE_MAKEFILE_DEP) $(import_includes_deps) |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 1118 | @echo Import includes file: $@ |
| 1119 | $(hide) mkdir -p $(dir $@) && rm -f $@ |
| 1120 | ifdef import_includes_deps |
Ying Wang | 14d02a3 | 2015-01-22 15:44:04 -0800 | [diff] [blame] | 1121 | $(hide) for f in $(PRIVATE_IMPORT_EXPORT_INCLUDES); do \ |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 1122 | cat $$f >> $@; \ |
| 1123 | done |
| 1124 | else |
| 1125 | $(hide) touch $@ |
| 1126 | endif |
| 1127 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1128 | ########################################################### |
| 1129 | ## Common object handling. |
| 1130 | ########################################################### |
| 1131 | |
| 1132 | # some rules depend on asm_objects being first. If your code depends on |
| 1133 | # being first, it's reasonable to require it to be assembly |
Torne (Richard Coles) | a5afbe8 | 2013-08-29 15:36:34 +0100 | [diff] [blame] | 1134 | normal_objects := \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 1135 | $(asm_objects) \ |
| 1136 | $(cpp_objects) \ |
| 1137 | $(gen_cpp_objects) \ |
| 1138 | $(gen_asm_objects) \ |
| 1139 | $(c_objects) \ |
| 1140 | $(gen_c_objects) \ |
| 1141 | $(objc_objects) \ |
Scott James Remnant | dd86e5a | 2015-09-17 15:40:49 -0700 | [diff] [blame] | 1142 | $(objcpp_objects) \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 1143 | $(yacc_objects) \ |
| 1144 | $(lex_objects) \ |
| 1145 | $(proto_generated_objects) \ |
Torne (Richard Coles) | a5afbe8 | 2013-08-29 15:36:34 +0100 | [diff] [blame] | 1146 | $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES)) |
| 1147 | |
| 1148 | all_objects := $(normal_objects) $(gen_o_objects) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1149 | |
Colin Cross | 2d20670 | 2014-02-13 13:41:52 -0800 | [diff] [blame] | 1150 | my_c_includes += $(TOPDIR)$(LOCAL_PATH) $(intermediates) $(generated_sources_dir) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1151 | |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 1152 | ifndef LOCAL_SDK_VERSION |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 1153 | my_c_includes += $(JNI_H_INCLUDE) |
Ying Wang | bce4b75 | 2010-07-22 15:51:56 -0700 | [diff] [blame] | 1154 | endif |
| 1155 | |
Torne (Richard Coles) | a5afbe8 | 2013-08-29 15:36:34 +0100 | [diff] [blame] | 1156 | # all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES; |
| 1157 | # use normal_objects here to avoid creating circular dependencies. This assumes |
| 1158 | # that custom build rules which generate .o files don't consume other generated |
| 1159 | # sources as input (or if they do they take care of that dependency themselves). |
Ying Wang | ec6d626 | 2014-01-16 16:21:03 -0800 | [diff] [blame] | 1160 | $(normal_objects) : | $(my_generated_sources) |
Colin Cross | 6b9bddd | 2015-11-30 17:33:26 -0800 | [diff] [blame] | 1161 | ifeq ($(BUILDING_WITH_NINJA),true) |
| 1162 | $(all_objects) : $(import_includes) |
| 1163 | else |
Torne (Richard Coles) | a5afbe8 | 2013-08-29 15:36:34 +0100 | [diff] [blame] | 1164 | $(all_objects) : | $(import_includes) |
Colin Cross | 6b9bddd | 2015-11-30 17:33:26 -0800 | [diff] [blame] | 1165 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1166 | ALL_C_CPP_ETC_OBJECTS += $(all_objects) |
| 1167 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1168 | |
| 1169 | ########################################################### |
| 1170 | # Standard library handling. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1171 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1172 | |
| 1173 | ########################################################### |
| 1174 | # The list of libraries that this module will link against are in |
| 1175 | # these variables. Each is a list of bare module names like "libc libm". |
| 1176 | # |
| 1177 | # LOCAL_SHARED_LIBRARIES |
| 1178 | # LOCAL_STATIC_LIBRARIES |
| 1179 | # LOCAL_WHOLE_STATIC_LIBRARIES |
| 1180 | # |
| 1181 | # We need to convert the bare names into the dependencies that |
| 1182 | # we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE. |
| 1183 | # LOCAL_BUILT_MODULE should depend on the BUILT versions of the |
| 1184 | # libraries, so that simply building this module doesn't force |
| 1185 | # an install of a library. Similarly, LOCAL_INSTALLED_MODULE |
| 1186 | # should depend on the INSTALLED versions of the libraries so |
| 1187 | # that they get installed when this module does. |
| 1188 | ########################################################### |
| 1189 | # NOTE: |
| 1190 | # WHOLE_STATIC_LIBRARIES are libraries that are pulled into the |
| 1191 | # module without leaving anything out, which is useful for turning |
| 1192 | # a collection of .a files into a .so file. Linking against a |
| 1193 | # normal STATIC_LIBRARY will only pull in code/symbols that are |
| 1194 | # referenced by the module. (see gcc/ld's --whole-archive option) |
| 1195 | ########################################################### |
| 1196 | |
| 1197 | # Get the list of BUILT libraries, which are under |
| 1198 | # various intermediates directories. |
| 1199 | so_suffix := $($(my_prefix)SHLIB_SUFFIX) |
| 1200 | a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX) |
| 1201 | |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 1202 | ifdef LOCAL_SDK_VERSION |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1203 | built_shared_libraries := \ |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 1204 | $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1205 | $(addsuffix $(so_suffix), \ |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 1206 | $(my_shared_libraries))) |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 1207 | built_shared_library_tocs := $(addsuffix .toc, $(built_shared_libraries)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1208 | |
Ying Wang | d8d3721 | 2014-03-21 16:17:04 -0700 | [diff] [blame] | 1209 | # Add the NDK libraries to the built module dependency |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 1210 | my_system_shared_libraries_fullpath := \ |
| 1211 | $(my_ndk_stl_shared_lib_fullpath) \ |
Andrew Hsieh | 140761af0 | 2014-04-25 23:47:10 -0700 | [diff] [blame] | 1212 | $(addprefix $(my_ndk_sysroot_lib)/, \ |
Ying Wang | d8d3721 | 2014-03-21 16:17:04 -0700 | [diff] [blame] | 1213 | $(addsuffix $(so_suffix), $(my_system_shared_libraries))) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 1214 | |
| 1215 | built_shared_libraries += $(my_system_shared_libraries_fullpath) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 1216 | else |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 1217 | built_shared_libraries := \ |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 1218 | $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \ |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 1219 | $(addsuffix $(so_suffix), \ |
Ying Wang | d8d3721 | 2014-03-21 16:17:04 -0700 | [diff] [blame] | 1220 | $(installed_shared_library_module_names))) |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 1221 | built_shared_library_tocs := $(addsuffix .toc, $(built_shared_libraries)) |
| 1222 | my_system_shared_libraries_fullpath := |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 1223 | endif |
| 1224 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1225 | built_static_libraries := \ |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 1226 | $(foreach lib,$(my_static_libraries), \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1227 | $(call intermediates-dir-for, \ |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 1228 | STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/$(lib)$(a_suffix)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1229 | |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 1230 | ifdef LOCAL_SDK_VERSION |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 1231 | built_static_libraries += $(my_ndk_stl_static_lib) |
| 1232 | endif |
| 1233 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1234 | built_whole_libraries := \ |
Colin Cross | 90353fe | 2014-02-04 14:53:25 -0800 | [diff] [blame] | 1235 | $(foreach lib,$(my_whole_static_libraries), \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1236 | $(call intermediates-dir-for, \ |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 1237 | STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/$(lib)$(a_suffix)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1238 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1239 | # We don't care about installed static libraries, since the |
| 1240 | # libraries have already been linked into the module at that point. |
| 1241 | # We do, however, care about the NOTICE files for any static |
Steve Block | d14d3b4 | 2012-03-01 11:34:41 +0000 | [diff] [blame] | 1242 | # libraries that we use. (see notice_files.mk) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1243 | |
| 1244 | installed_static_library_notice_file_targets := \ |
Colin Cross | 90353fe | 2014-02-04 14:53:25 -0800 | [diff] [blame] | 1245 | $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1246 | NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib)) |
| 1247 | |
Doug Kwan | 9a8ecf9 | 2011-05-10 21:50:58 -0700 | [diff] [blame] | 1248 | # Default is -fno-rtti. |
Doug Kwan | e3c3c6d | 2011-06-07 10:55:48 -0700 | [diff] [blame] | 1249 | ifeq ($(strip $(LOCAL_RTTI_FLAG)),) |
| 1250 | LOCAL_RTTI_FLAG := -fno-rtti |
| 1251 | endif |
Doug Kwan | 9a8ecf9 | 2011-05-10 21:50:58 -0700 | [diff] [blame] | 1252 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1253 | ########################################################### |
| 1254 | # Rule-specific variable definitions |
| 1255 | ########################################################### |
Logan Chien | e6f6543 | 2013-12-10 19:07:41 +0800 | [diff] [blame] | 1256 | |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 1257 | ifeq ($(my_clang),true) |
Chih-Hung Hsieh | 9aa69a6 | 2014-09-04 17:15:47 -0700 | [diff] [blame] | 1258 | my_cflags += $(LOCAL_CLANG_CFLAGS) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 1259 | my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS) |
Dan Albert | d2fa96d | 2014-11-28 14:00:12 -0800 | [diff] [blame] | 1260 | my_cppflags += $(LOCAL_CLANG_CPPFLAGS) |
Dan Albert | d160041 | 2015-06-10 16:33:43 -0700 | [diff] [blame] | 1261 | my_cflags_no_override += $(GLOBAL_CLANG_CFLAGS_NO_OVERRIDE) |
| 1262 | my_cppflags_no_override += $(GLOBAL_CLANG_CPPFLAGS_NO_OVERRIDE) |
Chih-Hung Hsieh | 9aa69a6 | 2014-09-04 17:15:47 -0700 | [diff] [blame] | 1263 | my_asflags += $(LOCAL_CLANG_ASFLAGS) |
| 1264 | my_ldflags += $(LOCAL_CLANG_LDFLAGS) |
Chih-Hung Hsieh | 619fdb8 | 2014-09-26 17:13:48 -0700 | [diff] [blame] | 1265 | my_cflags += $(LOCAL_CLANG_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CFLAGS_$(my_32_64_bit_suffix)) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 1266 | my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CONLYFLAGS_$(my_32_64_bit_suffix)) |
Chih-Hung Hsieh | 619fdb8 | 2014-09-26 17:13:48 -0700 | [diff] [blame] | 1267 | my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix)) |
| 1268 | my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix)) |
| 1269 | my_asflags += $(LOCAL_CLANG_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_ASFLAGS_$(my_32_64_bit_suffix)) |
Ying Wang | 1f98283 | 2014-02-06 18:08:44 -0800 | [diff] [blame] | 1270 | my_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cflags)) |
| 1271 | my_cppflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cppflags)) |
| 1272 | my_asflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_asflags)) |
| 1273 | my_ldflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_ldflags)) |
Logan Chien | e6f6543 | 2013-12-10 19:07:41 +0800 | [diff] [blame] | 1274 | endif |
| 1275 | |
Ying Wang | 45d0143 | 2014-10-28 14:50:59 -0700 | [diff] [blame] | 1276 | ifeq ($(my_fdo_build), true) |
| 1277 | my_cflags := $(patsubst -Os,-O2,$(my_cflags)) |
| 1278 | fdo_incompatible_flags := -fno-early-inlining -finline-limit=% |
| 1279 | my_cflags := $(filter-out $(fdo_incompatible_flags),$(my_cflags)) |
Dehao Chen | 295a6d2 | 2014-09-19 10:18:12 -0700 | [diff] [blame] | 1280 | endif |
| 1281 | |
Dan Albert | df3fd1d | 2015-08-12 14:54:16 -0700 | [diff] [blame] | 1282 | # No one should ever use this flag. On GCC it's mere presence will disable all |
| 1283 | # warnings, even those that are specified after it (contrary to typical warning |
| 1284 | # flag behavior). This circumvents CFLAGS_NO_OVERRIDE from forcibly enabling the |
| 1285 | # warnings that are *always* bugs. |
| 1286 | my_illegal_flags := -w |
| 1287 | my_cflags := $(filter-out $(my_illegal_flags),$(my_cflags)) |
| 1288 | my_cppflags := $(filter-out $(my_illegal_flags),$(my_cppflags)) |
| 1289 | my_conlyflags := $(filter-out $(my_illegal_flags),$(my_conlyflags)) |
| 1290 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1291 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 1292 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 1293 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(my_conlyflags) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 1294 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags) |
| 1295 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags) |
Dan Albert | d160041 | 2015-06-10 16:33:43 -0700 | [diff] [blame] | 1296 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS_NO_OVERRIDE := $(my_cflags_no_override) |
| 1297 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS_NO_OVERRIDE := $(my_cppflags_no_override) |
Doug Kwan | 9a8ecf9 | 2011-05-10 21:50:58 -0700 | [diff] [blame] | 1298 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1299 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 1300 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes) |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 1301 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 1302 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags) |
Dan Albert | b05f2ca | 2014-09-12 14:46:57 -0700 | [diff] [blame] | 1303 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1304 | |
| 1305 | # this is really the way to get the files onto the command line instead |
| 1306 | # of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work |
| 1307 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries) |
| 1308 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries) |
| 1309 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries) |
| 1310 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects) |
| 1311 | |
| 1312 | ########################################################### |
| 1313 | # Define library dependencies. |
| 1314 | ########################################################### |
| 1315 | # all_libraries is used for the dependencies on LOCAL_BUILT_MODULE. |
| 1316 | all_libraries := \ |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 1317 | $(built_shared_library_tocs) \ |
| 1318 | $(my_system_shared_libraries_fullpath) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1319 | $(built_static_libraries) \ |
| 1320 | $(built_whole_libraries) |
| 1321 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1322 | # Also depend on the notice files for any static libraries that |
| 1323 | # are linked into this module. This will force them to be installed |
| 1324 | # when this module is. |
| 1325 | $(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets) |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 1326 | |
| 1327 | ########################################################### |
| 1328 | # Export includes |
| 1329 | ########################################################### |
| 1330 | export_includes := $(intermediates)/export_includes |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 1331 | $(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(my_export_c_include_dirs) |
Ying Wang | 4908595 | 2014-05-06 13:03:32 -0700 | [diff] [blame] | 1332 | # Make sure .pb.h are already generated before any dependent source files get compiled. |
Christopher Wiley | 2d91c61 | 2015-11-19 13:52:15 -0800 | [diff] [blame] | 1333 | # Similarly, the generated DBus headers need to exist before we export their location. |
| 1334 | # People are not going to consume the aidl generated cpp file, but the cpp file is |
| 1335 | # generated after the headers, so this is a convenient way to ensure the headers exist. |
| 1336 | $(export_includes) : $(LOCAL_MODULE_MAKEFILE_DEP) $(proto_generated_headers) $(dbus_generated_headers) $(aidl_gen_cpp) |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 1337 | @echo Export includes file: $< -- $@ |
Colin Cross | 6b9bddd | 2015-11-30 17:33:26 -0800 | [diff] [blame] | 1338 | $(hide) mkdir -p $(dir $@) && rm -f $@.tmp |
Ying Wang | faeb693 | 2015-04-07 11:59:34 -0700 | [diff] [blame] | 1339 | ifdef my_export_c_include_dirs |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 1340 | $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \ |
Colin Cross | 6b9bddd | 2015-11-30 17:33:26 -0800 | [diff] [blame] | 1341 | echo "-I $$d" >> $@.tmp; \ |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 1342 | done |
| 1343 | else |
Colin Cross | 6b9bddd | 2015-11-30 17:33:26 -0800 | [diff] [blame] | 1344 | $(hide) touch $@.tmp |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 1345 | endif |
Colin Cross | 6b9bddd | 2015-11-30 17:33:26 -0800 | [diff] [blame] | 1346 | ifeq ($(BUILDING_WITH_NINJA),true) |
| 1347 | $(hide) if cmp -s $@.tmp $@ ; then \ |
| 1348 | rm $@.tmp ; \ |
| 1349 | else \ |
| 1350 | mv $@.tmp $@ ; \ |
| 1351 | fi |
| 1352 | else |
| 1353 | mv $@.tmp $@ ; |
| 1354 | endif |
| 1355 | |
| 1356 | # Kati adds restat=1 to ninja. GNU make does nothing for this. |
| 1357 | .KATI_RESTAT: $(export_includes) |
Ying Wang | 616e596 | 2012-04-18 17:35:55 -0700 | [diff] [blame] | 1358 | |
| 1359 | # Make sure export_includes gets generated when you are running mm/mmm |
| 1360 | $(LOCAL_BUILT_MODULE) : | $(export_includes) |