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