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