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) |
| 27 | my_system_shared_libraries := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES) |
| 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) |
| 37 | my_static_libraries := $(LOCAL_STATIC_LIBRARIES) |
| 38 | my_whole_static_libraries := $(LOCAL_WHOLE_STATIC_LIBRARIES) |
| 39 | my_shared_libraries := $(LOCAL_SHARED_LIBRARIES) |
| 40 | my_cflags := $(LOCAL_CFLAGS) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 41 | my_conlyflags := $(LOCAL_CONLYFLAGS) |
Dan Albert | d3d894d | 2014-11-14 15:28:49 -0800 | [diff] [blame] | 42 | my_cppflags := $(LOCAL_CPPFLAGS) |
| 43 | my_ldflags := $(LOCAL_LDFLAGS) |
| 44 | my_ldlibs := $(LOCAL_LDLIBS) |
| 45 | my_asflags := $(LOCAL_ASFLAGS) |
| 46 | my_cc := $(LOCAL_CC) |
| 47 | my_cxx := $(LOCAL_CXX) |
| 48 | my_c_includes := $(LOCAL_C_INCLUDES) |
| 49 | my_generated_sources := $(LOCAL_GENERATED_SOURCES) |
| 50 | my_native_coverage := $(LOCAL_NATIVE_COVERAGE) |
| 51 | my_additional_dependencies := $(LOCAL_MODULE_MAKEFILE) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
| 52 | |
Dan Albert | b58fb4a | 2014-11-14 17:15:00 -0800 | [diff] [blame] | 53 | ifdef LOCAL_IS_HOST_MODULE |
| 54 | my_allow_undefined_symbols := true |
| 55 | else |
| 56 | my_allow_undefined_symbols := $(strip $(LOCAL_ALLOW_UNDEFINED_SYMBOLS)) |
| 57 | endif |
| 58 | |
Andrew Hsieh | 140761af0 | 2014-04-25 23:47:10 -0700 | [diff] [blame] | 59 | my_ndk_sysroot := |
| 60 | my_ndk_sysroot_include := |
| 61 | my_ndk_sysroot_lib := |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 62 | ifdef LOCAL_SDK_VERSION |
Ying Wang | fe1bfe7 | 2012-08-14 11:08:03 -0700 | [diff] [blame] | 63 | ifdef LOCAL_NDK_VERSION |
| 64 | $(error $(LOCAL_PATH): LOCAL_NDK_VERSION is now retired.) |
| 65 | endif |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 66 | ifdef LOCAL_IS_HOST_MODULE |
Ian Rogers | 76a6dc3 | 2012-10-01 16:36:23 -0700 | [diff] [blame] | 67 | $(error $(LOCAL_PATH): LOCAL_SDK_VERSION cannot be used in host module) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 68 | endif |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 69 | my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/sources |
Andrew Hsieh | 140761af0 | 2014-04-25 23:47:10 -0700 | [diff] [blame] | 70 | my_ndk_sysroot := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH) |
| 71 | my_ndk_sysroot_include := $(my_ndk_sysroot)/usr/include |
| 72 | ifeq (x86_64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) |
| 73 | my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib64 |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 74 | else ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT)) |
| 75 | my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/libr6 |
Andrew Hsieh | 140761af0 | 2014-04-25 23:47:10 -0700 | [diff] [blame] | 76 | else |
| 77 | my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib |
| 78 | endif |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 79 | |
Dan Albert | d3d894d | 2014-11-14 15:28:49 -0800 | [diff] [blame] | 80 | # The bionic linker now has support for gnu style hashes (which are much |
| 81 | # faster!), but shipping to older devices requires the old style hash. |
| 82 | #ifeq ($(shell expr $(LOCAL_SDK_VERSION) >= FIRST_SUPPORTED_VERSION),0) |
| 83 | my_ldflags += -Wl,--hash-style=sysv |
| 84 | #endif |
| 85 | |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 86 | # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location. |
| 87 | # See ndk/docs/CPLUSPLUS-SUPPORT.html |
| 88 | my_ndk_stl_include_path := |
| 89 | my_ndk_stl_shared_lib_fullpath := |
| 90 | my_ndk_stl_shared_lib := |
| 91 | my_ndk_stl_static_lib := |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 92 | my_ndk_stl_cppflags := |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 93 | my_cpu_variant := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI) |
| 94 | ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT)) |
| 95 | my_cpu_variant := mips32r6 |
| 96 | endif |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 97 | LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT)) |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 98 | ifeq (,$(LOCAL_NDK_STL_VARIANT)) |
| 99 | LOCAL_NDK_STL_VARIANT := system |
| 100 | endif |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 101 | ifneq (1,$(words $(filter 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] | 102 | $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT)) |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 103 | endif |
| 104 | ifeq (system,$(LOCAL_NDK_STL_VARIANT)) |
| 105 | my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include |
| 106 | # for "system" variant, the shared library exists in the system library and -lstdc++ is added by default. |
| 107 | else # LOCAL_NDK_STL_VARIANT is not system |
| 108 | ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT))) |
| 109 | my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport |
| 110 | ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT)) |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 111 | my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(my_cpu_variant)/libstlport_static.a |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 112 | else |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 113 | 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] | 114 | my_ndk_stl_shared_lib := -lstlport_shared |
| 115 | endif |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 116 | else # LOCAL_NDK_STL_VARIANT is not stlport_* either |
| 117 | ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT))) |
| 118 | my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include \ |
| 119 | $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include \ |
| 120 | $(my_ndk_source_root)/android/support/include |
| 121 | ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT)) |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 122 | my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(my_cpu_variant)/libc++_static.a |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 123 | else |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 124 | 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] | 125 | my_ndk_stl_shared_lib := -lc++_shared |
| 126 | endif |
| 127 | my_ndk_stl_cppflags := -std=c++11 |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 128 | else |
| 129 | # LOCAL_NDK_STL_VARIANT is gnustl_static |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 130 | 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] | 131 | $(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] | 132 | 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 |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 133 | endif |
| 134 | endif |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 135 | endif |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 136 | endif |
| 137 | |
Dan Albert | 95994de | 2014-08-07 18:29:11 -0700 | [diff] [blame] | 138 | # MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because |
| 139 | # all code is position independent, and then those warnings get promoted to |
| 140 | # errors. |
Ying Wang | 594a10a | 2014-08-07 20:08:04 -0700 | [diff] [blame] | 141 | ifndef USE_MINGW |
Dan Albert | 4803ce2 | 2014-08-06 12:36:46 -0700 | [diff] [blame] | 142 | ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES) |
| 143 | my_cflags += -fpie |
| 144 | else |
| 145 | my_cflags += -fPIC |
| 146 | endif |
Dan Albert | 95994de | 2014-08-07 18:29:11 -0700 | [diff] [blame] | 147 | endif |
Dan Albert | 4803ce2 | 2014-08-06 12:36:46 -0700 | [diff] [blame] | 148 | |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 149 | my_src_files += $(LOCAL_SRC_FILES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SRC_FILES_$(my_32_64_bit_suffix)) |
| 150 | my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix)) |
| 151 | my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix)) |
| 152 | my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix)) |
| 153 | my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix)) |
| 154 | my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix)) |
| 155 | my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix)) |
| 156 | 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] | 157 | |
Dan Albert | db905e7 | 2014-08-18 11:14:38 -0700 | [diff] [blame] | 158 | my_clang := $(strip $(LOCAL_CLANG)) |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 159 | ifdef LOCAL_CLANG_$(my_32_64_bit_suffix) |
Dan Albert | db905e7 | 2014-08-18 11:14:38 -0700 | [diff] [blame] | 160 | my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix))) |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 161 | endif |
| 162 | ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH) |
Dan Albert | db905e7 | 2014-08-18 11:14:38 -0700 | [diff] [blame] | 163 | 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] | 164 | endif |
| 165 | |
Tim Murray | 92d79cb | 2014-04-04 14:38:29 -0700 | [diff] [blame] | 166 | # clang is enabled by default for host builds |
| 167 | # enable it unless we've specifically disabled clang above |
| 168 | ifdef LOCAL_IS_HOST_MODULE |
Tim Murray | f3ca3d5 | 2014-07-24 15:20:18 -0700 | [diff] [blame] | 169 | ifneq ($(HOST_OS),windows) |
Tim Murray | 5ca1dc1 | 2014-07-24 14:42:53 -0700 | [diff] [blame] | 170 | ifeq ($(my_clang),) |
| 171 | my_clang := true |
| 172 | endif |
| 173 | endif |
Tim Murray | 92d79cb | 2014-04-04 14:38:29 -0700 | [diff] [blame] | 174 | endif |
| 175 | |
Tim Murray | 06659bc | 2014-08-13 11:53:07 -0700 | [diff] [blame] | 176 | # Add option to make clang the default for device build |
| 177 | ifeq ($(USE_CLANG_PLATFORM_BUILD),true) |
| 178 | ifeq ($(my_clang),) |
| 179 | my_clang := true |
| 180 | endif |
| 181 | endif |
| 182 | |
Colin Cross | f4f2fbe | 2014-02-12 21:15:12 -0800 | [diff] [blame] | 183 | # 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] | 184 | 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) |
| 185 | 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] | 186 | |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 187 | my_cflags := $(filter-out $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_UNSUPPORTED_CFLAGS),$(my_cflags)) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 188 | |
Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 189 | include $(BUILD_SYSTEM)/cxx_stl_setup.mk |
Ying Wang | d90de32 | 2014-05-23 16:42:37 -0700 | [diff] [blame] | 190 | |
Ying Wang | 285045b | 2013-08-13 12:35:10 -0700 | [diff] [blame] | 191 | # Add static HAL libraries |
| 192 | ifdef LOCAL_HAL_STATIC_LIBRARIES |
| 193 | $(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \ |
| 194 | $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\ |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 195 | $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\ |
| 196 | $(eval my_static_libraries += $(lib).default))) |
Ying Wang | 285045b | 2013-08-13 12:35:10 -0700 | [diff] [blame] | 197 | b_lib := |
| 198 | endif |
| 199 | |
Dan Albert | 4ae5d4b | 2014-10-31 16:23:08 -0700 | [diff] [blame] | 200 | include $(BUILD_SYSTEM)/config_sanitizers.mk |
Evgeniy Stepanov | 6cc9c06 | 2012-03-30 12:15:12 +0400 | [diff] [blame] | 201 | |
Ying Wang | ba8b377 | 2014-03-10 18:23:08 -0700 | [diff] [blame] | 202 | ifeq ($(strip $($(LOCAL_2ND_ARCH_VAR_PREFIX)WITHOUT_$(my_prefix)CLANG)),true) |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 203 | my_clang := |
Mike Lockwood | 051a174 | 2013-06-14 10:52:50 -0700 | [diff] [blame] | 204 | endif |
| 205 | |
Shih-wei Liao | c8dfc16 | 2013-01-27 01:45:59 -0800 | [diff] [blame] | 206 | # Add in libcompiler_rt for all regular device builds |
Mike Lockwood | daf5e22 | 2012-10-18 10:17:47 -0700 | [diff] [blame] | 207 | ifeq (,$(LOCAL_SDK_VERSION)$(LOCAL_IS_HOST_MODULE)$(WITHOUT_LIBCOMPILER_RT)) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 208 | my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES) |
Stephen Hines | c72f396 | 2012-06-11 14:53:34 -0700 | [diff] [blame] | 209 | endif |
| 210 | |
Jing Yu | 2dcc806 | 2009-09-21 16:31:50 -0700 | [diff] [blame] | 211 | #################################################### |
| 212 | ## Add FDO flags if FDO is turned on and supported |
Dehao Chen | 295a6d2 | 2014-09-19 10:18:12 -0700 | [diff] [blame] | 213 | ## Please note that we will do option filtering during FDO build. |
| 214 | ## i.e. Os->O2, remove -fno-early-inline and -finline-limit. |
| 215 | ################################################################## |
Ying Wang | d791463 | 2014-10-28 14:50:59 -0700 | [diff] [blame] | 216 | my_fdo_build := |
| 217 | ifneq ($(filter true always, $(LOCAL_FDO_SUPPORT)),) |
| 218 | ifeq ($(BUILD_FDO_INSTRUMENT),true) |
| 219 | my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_CFLAGS) |
| 220 | my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_LDFLAGS) |
| 221 | my_fdo_build := true |
| 222 | else ifneq ($(filter true,$(BUILD_FDO_OPTIMIZE))$(filter always,$(LOCAL_FDO_SUPPORT)),) |
| 223 | my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_OPTIMIZE_CFLAGS) |
| 224 | my_fdo_build := true |
synergydev | 4a60576 | 2013-08-05 02:44:37 -0700 | [diff] [blame] | 225 | endif |
Jing Yu | 2dcc806 | 2009-09-21 16:31:50 -0700 | [diff] [blame] | 226 | endif |
| 227 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 228 | ########################################################### |
Jim Huang | 20d1ba6 | 2010-10-14 16:15:56 +0800 | [diff] [blame] | 229 | ## Explicitly declare assembly-only __ASSEMBLY__ macro for |
| 230 | ## assembly source |
| 231 | ########################################################### |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 232 | my_asflags += -D__ASSEMBLY__ |
Jim Huang | 20d1ba6 | 2010-10-14 16:15:56 +0800 | [diff] [blame] | 233 | |
Ying Wang | d8d3721 | 2014-03-21 16:17:04 -0700 | [diff] [blame] | 234 | |
Jim Huang | 20d1ba6 | 2010-10-14 16:15:56 +0800 | [diff] [blame] | 235 | ########################################################### |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 236 | ## Define PRIVATE_ variables from global vars |
| 237 | ########################################################### |
Ying Wang | 7fff9a1 | 2014-01-09 14:39:41 -0800 | [diff] [blame] | 238 | ifndef LOCAL_IS_HOST_MODULE |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 239 | ifdef LOCAL_SDK_VERSION |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 240 | my_target_project_includes := |
Andrew Hsieh | 140761af0 | 2014-04-25 23:47:10 -0700 | [diff] [blame] | 241 | 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] | 242 | my_target_global_cppflags := $(my_ndk_stl_cppflags) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 243 | else |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 244 | my_target_project_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES) |
| 245 | my_target_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_C_INCLUDES) |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 246 | my_target_global_cppflags := |
Ying Wang | f4723fa | 2013-08-15 11:01:10 -0700 | [diff] [blame] | 247 | endif # LOCAL_SDK_VERSION |
| 248 | |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 249 | ifeq ($(my_clang),true) |
Ying Wang | 1f98283 | 2014-02-06 18:08:44 -0800 | [diff] [blame] | 250 | 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] | 251 | 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] | 252 | 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] | 253 | 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] | 254 | else |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 255 | my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 256 | my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CONLYFLAGS) |
Andrew Hsieh | 73d800e | 2014-03-04 17:11:52 +0800 | [diff] [blame] | 257 | my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 258 | my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LDFLAGS) |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 259 | endif # my_clang |
Ying Wang | da4bf42 | 2012-08-16 16:45:01 -0700 | [diff] [blame] | 260 | |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 261 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes) |
Evgeniy Stepanov | a7095e9 | 2012-03-30 12:18:52 +0400 | [diff] [blame] | 262 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 263 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 264 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CONLYFLAGS := $(my_target_global_conlyflags) |
Logan Chien | e6f6543 | 2013-12-10 19:07:41 +0800 | [diff] [blame] | 265 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags) |
| 266 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags) |
| 267 | |
Ying Wang | 7fff9a1 | 2014-01-09 14:39:41 -0800 | [diff] [blame] | 268 | else # LOCAL_IS_HOST_MODULE |
| 269 | |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 270 | ifeq ($(my_clang),true) |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 271 | my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CFLAGS) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 272 | my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CONLYFLAGS) |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 273 | my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CPPFLAGS) |
| 274 | my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_LDFLAGS) |
Stephen Hines | f008966 | 2014-09-25 22:35:16 -0700 | [diff] [blame] | 275 | my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES) |
Logan Chien | e6f6543 | 2013-12-10 19:07:41 +0800 | [diff] [blame] | 276 | else |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 277 | my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 278 | my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CONLYFLAGS) |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 279 | my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS) |
| 280 | my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LDFLAGS) |
| 281 | my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES) |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 282 | endif # my_clang |
Logan Chien | e6f6543 | 2013-12-10 19:07:41 +0800 | [diff] [blame] | 283 | |
| 284 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_C_INCLUDES := $(my_host_c_includes) |
| 285 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 286 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CONLYFLAGS := $(my_host_global_conlyflags) |
Logan Chien | e6f6543 | 2013-12-10 19:07:41 +0800 | [diff] [blame] | 287 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags) |
| 288 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags) |
| 289 | endif # LOCAL_IS_HOST_MODULE |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 290 | |
Dan Albert | 43e128a | 2015-01-23 16:12:57 -0800 | [diff] [blame] | 291 | # To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and |
| 292 | # build with NATIVE_COVERAGE=true in your enviornment. Note that the build |
| 293 | # system is not sensitive to changes to NATIVE_COVERAGE, so you should do a |
| 294 | # clean build of your module after toggling it. |
| 295 | ifeq ($(NATIVE_COVERAGE),true) |
| 296 | ifeq ($(my_native_coverage),true) |
Dan Albert | 343ed67 | 2015-01-25 16:20:57 -0800 | [diff] [blame] | 297 | # Note that clang coverage doesn't play nicely with acov out of the box. |
| 298 | # Clang apparently generates .gcno files that aren't compatible with |
| 299 | # gcov-4.8. This can be solved by installing gcc-4.6 and invoking lcov |
| 300 | # with `--gcov-tool /usr/bin/gcov-4.6`. |
| 301 | # |
| 302 | # http://stackoverflow.com/questions/17758126/clang-code-coverage-invalid-output |
Dan Albert | 2c03e04 | 2015-01-24 15:14:35 -0800 | [diff] [blame] | 303 | my_cflags += --coverage -O0 |
Dan Albert | 343ed67 | 2015-01-25 16:20:57 -0800 | [diff] [blame] | 304 | my_ldflags += --coverage |
Dan Albert | 43e128a | 2015-01-23 16:12:57 -0800 | [diff] [blame] | 305 | endif |
| 306 | else |
| 307 | my_native_coverage := false |
| 308 | endif |
| 309 | |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 310 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 311 | ## Define PRIVATE_ variables used by multiple module types |
| 312 | ########################################################### |
| 313 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 314 | $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 315 | |
Andrew Hsieh | 6cea59a | 2013-08-27 17:33:06 +0800 | [diff] [blame] | 316 | ifeq ($(strip $(WITH_SYNTAX_CHECK)),) |
| 317 | LOCAL_NO_SYNTAX_CHECK := true |
| 318 | endif |
| 319 | |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 320 | ifeq ($(strip $(WITH_STATIC_ANALYZER)),) |
| 321 | LOCAL_NO_STATIC_ANALYZER := true |
| 322 | endif |
| 323 | |
Andrew Hsieh | 6cea59a | 2013-08-27 17:33:06 +0800 | [diff] [blame] | 324 | ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),) |
| 325 | my_syntax_arch := host |
| 326 | else |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 327 | my_syntax_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH) |
Andrew Hsieh | 6cea59a | 2013-08-27 17:33:06 +0800 | [diff] [blame] | 328 | endif |
| 329 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 330 | ifeq ($(strip $(my_cc)),) |
Dan Albert | db905e7 | 2014-08-18 11:14:38 -0700 | [diff] [blame] | 331 | ifeq ($(my_clang),true) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 332 | my_cc := $(CLANG) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 333 | else |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 334 | my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 335 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 336 | endif |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 337 | ifneq ($(LOCAL_NO_STATIC_ANALYZER),true) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 338 | my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer $(my_syntax_arch) "$(my_cc)" |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 339 | else |
Andrew Hsieh | 6cea59a | 2013-08-27 17:33:06 +0800 | [diff] [blame] | 340 | ifneq ($(LOCAL_NO_SYNTAX_CHECK),true) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 341 | my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-syntax $(my_syntax_arch) "$(my_cc)" |
Andrew Hsieh | 6cea59a | 2013-08-27 17:33:06 +0800 | [diff] [blame] | 342 | endif |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 343 | endif |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 344 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 345 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 346 | ifeq ($(strip $(my_cxx)),) |
Dan Albert | db905e7 | 2014-08-18 11:14:38 -0700 | [diff] [blame] | 347 | ifeq ($(my_clang),true) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 348 | my_cxx := $(CLANG_CXX) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 349 | else |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 350 | my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 351 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 352 | endif |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 353 | ifneq ($(LOCAL_NO_STATIC_ANALYZER),true) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 354 | my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-analyzer $(my_syntax_arch) "$(my_cxx)" |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 355 | else |
Andrew Hsieh | 6cea59a | 2013-08-27 17:33:06 +0800 | [diff] [blame] | 356 | ifneq ($(LOCAL_NO_SYNTAX_CHECK),true) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 357 | my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-syntax $(my_syntax_arch) "$(my_cxx)" |
Andrew Hsieh | 6cea59a | 2013-08-27 17:33:06 +0800 | [diff] [blame] | 358 | endif |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 359 | endif |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 360 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(my_cxx) |
Dan Albert | b6bb71b | 2014-08-05 14:44:41 -0700 | [diff] [blame] | 361 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 362 | |
| 363 | # TODO: support a mix of standard extensions so that this isn't necessary |
| 364 | LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION)) |
| 365 | ifeq ($(LOCAL_CPP_EXTENSION),) |
| 366 | LOCAL_CPP_EXTENSION := .cpp |
| 367 | endif |
| 368 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPP_EXTENSION := $(LOCAL_CPP_EXTENSION) |
| 369 | |
| 370 | # Certain modules like libdl have to have symbols resolved at runtime and blow |
| 371 | # up if --no-undefined is passed to the linker. |
| 372 | ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),) |
Dan Albert | b58fb4a | 2014-11-14 17:15:00 -0800 | [diff] [blame] | 373 | ifeq ($(my_allow_undefined_symbols),) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 374 | 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] | 375 | endif |
| 376 | endif |
| 377 | |
Ying Wang | fcdabd4 | 2011-04-25 14:22:41 -0700 | [diff] [blame] | 378 | ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES)) |
| 379 | $(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true |
| 380 | else |
| 381 | $(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := |
| 382 | endif |
| 383 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 384 | ########################################################### |
| 385 | ## Define arm-vs-thumb-mode flags. |
| 386 | ########################################################### |
| 387 | LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE)) |
Colin Cross | 6e087a3 | 2014-01-22 17:36:05 -0800 | [diff] [blame] | 388 | ifeq ($(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 389 | arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm) |
| 390 | normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb) |
| 391 | |
Dave Bort | 9528248 | 2009-04-23 18:44:55 -0700 | [diff] [blame] | 392 | # Read the values from something like TARGET_arm_CFLAGS or |
| 393 | # TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't |
| 394 | # actually used (although they are usually empty). |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 395 | arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS) |
| 396 | 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] | 397 | ifeq ($(my_clang),true) |
Ying Wang | 1f98283 | 2014-02-06 18:08:44 -0800 | [diff] [blame] | 398 | arm_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(arm_objects_cflags)) |
| 399 | 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] | 400 | endif |
| 401 | |
Chih-Wei Huang | 0d09e58 | 2010-07-09 10:07:52 +0800 | [diff] [blame] | 402 | else |
| 403 | arm_objects_mode := |
| 404 | normal_objects_mode := |
| 405 | arm_objects_cflags := |
| 406 | normal_objects_cflags := |
| 407 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 408 | |
| 409 | ########################################################### |
| 410 | ## Define per-module debugging flags. Users can turn on |
| 411 | ## debugging for a particular module by setting DEBUG_MODULE_ModuleName |
| 412 | ## to a non-empty value in their environment or buildspec.mk, |
| 413 | ## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the |
| 414 | ## debug flags that they want to use. |
| 415 | ########################################################### |
| 416 | ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE)) |
| 417 | debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS) |
| 418 | else |
| 419 | debug_cflags := |
| 420 | endif |
| 421 | |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 422 | #################################################### |
| 423 | ## Compile RenderScript with reflected C++ |
| 424 | #################################################### |
| 425 | |
Ying Wang | b8e0185 | 2014-01-23 15:09:04 -0800 | [diff] [blame] | 426 | renderscript_sources := $(filter %.rs %.fs,$(my_src_files)) |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 427 | |
| 428 | ifneq (,$(renderscript_sources)) |
| 429 | |
| 430 | renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources)) |
| 431 | RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp |
| 432 | renderscript_intermediate := $(intermediates)/renderscript |
| 433 | |
| 434 | ifeq ($(LOCAL_RENDERSCRIPT_CC),) |
| 435 | LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC) |
| 436 | endif |
| 437 | |
| 438 | # Turn on all warnings and warnings as errors for RS compiles. |
| 439 | # This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error |
| 440 | renderscript_flags := -Wall -Werror |
| 441 | renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS) |
Ying Wang | acaada1 | 2014-09-10 16:11:41 -0700 | [diff] [blame] | 442 | # -m32 or -m64 |
| 443 | renderscript_flags += -m$(my_32_64_bit_suffix) |
Tim Murray | f0020c6 | 2014-09-10 15:11:01 -0700 | [diff] [blame] | 444 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 445 | renderscript_includes := \ |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 446 | $(TOPDIR)external/clang/lib/Headers \ |
| 447 | $(TOPDIR)frameworks/rs/scriptc \ |
| 448 | $(LOCAL_RENDERSCRIPT_INCLUDES) |
| 449 | |
| 450 | ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 451 | renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE) |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 452 | endif |
| 453 | |
Ying Wang | b931956 | 2015-04-03 16:15:28 -0700 | [diff] [blame^] | 454 | bc_dep_files := $(addprefix $(renderscript_intermediate)/, \ |
| 455 | $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources))))) |
| 456 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 457 | $(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes) |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 458 | $(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC) |
| 459 | $(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags) |
| 460 | $(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath) |
| 461 | $(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate) |
Ying Wang | b931956 | 2015-04-03 16:15:28 -0700 | [diff] [blame^] | 462 | $(RenderScript_file_stamp): PRIVATE_DEP_FILES := $(bc_dep_files) |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 463 | $(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC) |
| 464 | $(transform-renderscripts-to-cpp-and-bc) |
| 465 | |
Ying Wang | b931956 | 2015-04-03 16:15:28 -0700 | [diff] [blame^] | 466 | # include the dependency files (.d/.P) generated by llvm-rs-cc. |
| 467 | -include $(bc_dep_files:%.d=%.P) |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 468 | |
| 469 | LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp) |
| 470 | |
| 471 | rs_generated_cpps := $(addprefix \ |
| 472 | $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \ |
| 473 | $(notdir $(renderscript_sources))))) |
| 474 | |
Stephen Hines | 8ff9252 | 2014-06-06 12:51:47 -0700 | [diff] [blame] | 475 | # 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] | 476 | $(rs_generated_cpps) : $(RenderScript_file_stamp) |
Ying Wang | 81ab833 | 2014-05-28 16:17:09 -0700 | [diff] [blame] | 477 | @echo "Updated RS generated cpp file $@." |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 478 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 479 | my_c_includes += $(renderscript_intermediate) |
| 480 | my_generated_sources += $(rs_generated_cpps) |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 481 | |
| 482 | endif |
| 483 | |
| 484 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 485 | ########################################################### |
| 486 | ## Stuff source generated from one-off tools |
| 487 | ########################################################### |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 488 | $(my_generated_sources): PRIVATE_MODULE := $(my_register_name) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 489 | |
Colin Cross | d826264 | 2014-01-24 23:17:21 -0800 | [diff] [blame] | 490 | my_gen_sources_copy := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(filter $(generated_sources_dir)/%,$(my_generated_sources))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 491 | |
Colin Cross | d826264 | 2014-01-24 23:17:21 -0800 | [diff] [blame] | 492 | $(my_gen_sources_copy): $(intermediates)/% : $(generated_sources_dir)/% | $(ACP) |
| 493 | @echo "Copy: $@" |
| 494 | $(copy-file-to-target) |
| 495 | |
| 496 | my_generated_sources := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(my_generated_sources)) |
| 497 | |
| 498 | ALL_GENERATED_SOURCES += $(my_generated_sources) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 499 | |
| 500 | ########################################################### |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 501 | ## Compile the .proto files to .cc and then to .o |
| 502 | ########################################################### |
Ying Wang | b8e0185 | 2014-01-23 15:09:04 -0800 | [diff] [blame] | 503 | proto_sources := $(filter %.proto,$(my_src_files)) |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 504 | proto_generated_objects := |
| 505 | proto_generated_headers := |
| 506 | ifneq ($(proto_sources),) |
| 507 | proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources)) |
Ying Wang | ead8944 | 2014-02-25 11:18:40 -0800 | [diff] [blame] | 508 | proto_generated_cc_sources_dir := $(generated_sources_dir)/proto |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 509 | proto_generated_cc_sources := $(addprefix $(proto_generated_cc_sources_dir)/, \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 510 | $(patsubst %.proto,%.pb.cc,$(proto_sources_fullpath))) |
Ying Wang | ead8944 | 2014-02-25 11:18:40 -0800 | [diff] [blame] | 511 | proto_generated_headers := $(patsubst %.pb.cc,%.pb.h, $(proto_generated_cc_sources)) |
| 512 | proto_generated_obj_dir := $(intermediates)/proto |
| 513 | proto_generated_objects := $(addprefix $(proto_generated_obj_dir)/, \ |
| 514 | $(patsubst %.proto,%.pb.o,$(proto_sources_fullpath))) |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 515 | |
Ying Wang | 4908595 | 2014-05-06 13:03:32 -0700 | [diff] [blame] | 516 | # Auto-export the generated proto source dir. |
| 517 | LOCAL_EXPORT_C_INCLUDE_DIRS += $(proto_generated_cc_sources_dir) |
| 518 | |
Ying Wang | ead8944 | 2014-02-25 11:18:40 -0800 | [diff] [blame] | 519 | # Ensure the transform-proto-to-cc rule is only defined once in multilib build. |
| 520 | ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 521 | $(proto_generated_cc_sources): PRIVATE_PROTO_INCLUDES := $(TOP) |
| 522 | $(proto_generated_cc_sources): PRIVATE_PROTO_CC_OUTPUT_DIR := $(proto_generated_cc_sources_dir) |
Ying Wang | 33c0d95 | 2010-11-05 11:30:58 -0700 | [diff] [blame] | 523 | $(proto_generated_cc_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS) |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 524 | $(proto_generated_cc_sources): $(proto_generated_cc_sources_dir)/%.pb.cc: %.proto $(PROTOC) |
| 525 | $(transform-proto-to-cc) |
| 526 | |
Stephen Hines | 8ff9252 | 2014-06-06 12:51:47 -0700 | [diff] [blame] | 527 | # This is just a dummy rule to make sure gmake doesn't skip updating the dependents. |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 528 | $(proto_generated_headers): $(proto_generated_cc_sources_dir)/%.pb.h: $(proto_generated_cc_sources_dir)/%.pb.cc |
Ying Wang | 81ab833 | 2014-05-28 16:17:09 -0700 | [diff] [blame] | 529 | @echo "Updated header file $@." |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 530 | |
Ying Wang | ead8944 | 2014-02-25 11:18:40 -0800 | [diff] [blame] | 531 | $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true |
| 532 | endif # transform-proto-to-cc rule included only once |
| 533 | |
Ying Wang | 022a7b3 | 2012-06-13 11:38:10 -0700 | [diff] [blame] | 534 | $(proto_generated_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 535 | $(proto_generated_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
Ying Wang | ead8944 | 2014-02-25 11:18:40 -0800 | [diff] [blame] | 536 | $(proto_generated_objects): $(proto_generated_obj_dir)/%.o: $(proto_generated_cc_sources_dir)/%.cc $(proto_generated_headers) |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 537 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 538 | -include $(proto_generated_objects:%.o=%.P) |
| 539 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 540 | my_c_includes += external/protobuf/src $(proto_generated_cc_sources_dir) |
| 541 | my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 542 | ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full) |
Dan Albert | c3031c7 | 2014-11-11 10:42:17 -0800 | [diff] [blame] | 543 | ifdef LOCAL_SDK_VERSION |
| 544 | my_static_libraries += libprotobuf-cpp-full |
| 545 | else |
| 546 | my_shared_libraries += libprotobuf-cpp-full |
| 547 | endif |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 548 | else |
Dan Albert | c3031c7 | 2014-11-11 10:42:17 -0800 | [diff] [blame] | 549 | ifdef LOCAL_SDK_VERSION |
| 550 | my_static_libraries += libprotobuf-cpp-lite |
| 551 | else |
| 552 | my_shared_libraries += libprotobuf-cpp-lite |
| 553 | endif |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 554 | endif |
Ying Wang | ead8944 | 2014-02-25 11:18:40 -0800 | [diff] [blame] | 555 | endif # $(proto_sources) non-empty |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 556 | |
| 557 | |
| 558 | ########################################################### |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 559 | ## YACC: Compile .y and .yy files to .cpp and the to .o. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 560 | ########################################################### |
| 561 | |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 562 | y_yacc_sources := $(filter %.y,$(my_src_files)) |
| 563 | y_yacc_cpps := $(addprefix \ |
| 564 | $(intermediates)/,$(y_yacc_sources:.y=$(LOCAL_CPP_EXTENSION))) |
| 565 | |
| 566 | yy_yacc_sources := $(filter %.yy,$(my_src_files)) |
| 567 | yy_yacc_cpps := $(addprefix \ |
| 568 | $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION))) |
| 569 | |
| 570 | yacc_cpps := $(y_yacc_cpps) $(yy_yacc_cpps) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 571 | yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h) |
| 572 | yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o) |
| 573 | |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 574 | ifneq ($(strip $(y_yacc_cpps)),) |
| 575 | $(y_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 576 | $(TOPDIR)$(LOCAL_PATH)/%.y \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 577 | $(lex_cpps) $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 578 | $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION)) |
| 579 | $(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION) |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 580 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 581 | |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 582 | ifneq ($(strip $(yy_yacc_cpps)),) |
| 583 | $(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \ |
| 584 | $(TOPDIR)$(LOCAL_PATH)/%.yy \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 585 | $(lex_cpps) $(my_additional_dependencies) |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 586 | $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION)) |
| 587 | $(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION) |
| 588 | endif |
| 589 | |
| 590 | ifneq ($(strip $(yacc_cpps)),) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 591 | $(yacc_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 592 | $(yacc_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
| 593 | $(yacc_objects): $(intermediates)/%.o: $(intermediates)/%$(LOCAL_CPP_EXTENSION) |
| 594 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 595 | endif |
| 596 | |
| 597 | ########################################################### |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 598 | ## LEX: Compile .l and .ll files to .cpp and then to .o. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 599 | ########################################################### |
| 600 | |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 601 | l_lex_sources := $(filter %.l,$(my_src_files)) |
| 602 | l_lex_cpps := $(addprefix \ |
| 603 | $(intermediates)/,$(l_lex_sources:.l=$(LOCAL_CPP_EXTENSION))) |
| 604 | |
| 605 | ll_lex_sources := $(filter %.ll,$(my_src_files)) |
| 606 | ll_lex_cpps := $(addprefix \ |
| 607 | $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION))) |
| 608 | |
| 609 | lex_cpps := $(l_lex_cpps) $(ll_lex_cpps) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 610 | lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o) |
| 611 | |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 612 | ifneq ($(strip $(l_lex_cpps)),) |
| 613 | $(l_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 614 | $(TOPDIR)$(LOCAL_PATH)/%.l |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 615 | $(transform-l-to-cpp) |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 616 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 617 | |
Nicolas Geoffray | 9484e2e | 2014-03-03 15:57:06 +0000 | [diff] [blame] | 618 | ifneq ($(strip $(ll_lex_cpps)),) |
| 619 | $(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \ |
| 620 | $(TOPDIR)$(LOCAL_PATH)/%.ll |
| 621 | $(transform-l-to-cpp) |
| 622 | endif |
| 623 | |
| 624 | ifneq ($(strip $(lex_cpps)),) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 625 | $(lex_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 626 | $(lex_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
| 627 | $(lex_objects): $(intermediates)/%.o: \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 628 | $(intermediates)/%$(LOCAL_CPP_EXTENSION) \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 629 | $(my_additional_dependencies) \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 630 | $(yacc_headers) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 631 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 632 | endif |
| 633 | |
| 634 | ########################################################### |
| 635 | ## C++: Compile .cpp files to .o. |
| 636 | ########################################################### |
| 637 | |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 638 | # we also do this on host modules, even though |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 639 | # it's not really arm, because there are files that are shared. |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 640 | cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(my_src_files))) |
| 641 | dotdot_arm_sources := $(filter ../%,$(cpp_arm_sources)) |
| 642 | cpp_arm_sources := $(filter-out ../%,$(cpp_arm_sources)) |
| 643 | cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 644 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 645 | # For source files starting with ../, we remove all the ../ in the object file path, |
| 646 | # to avoid object file escaping the intermediate directory. |
| 647 | dotdot_arm_objects := |
| 648 | $(foreach s,$(dotdot_arm_sources),\ |
| 649 | $(eval $(call compile-dotdot-cpp-file,$(s),\ |
| 650 | $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\ |
| 651 | dotdot_arm_objects))) |
| 652 | |
| 653 | dotdot_sources := $(filter ../%$(LOCAL_CPP_EXTENSION),$(my_src_files)) |
| 654 | dotdot_objects := |
| 655 | $(foreach s,$(dotdot_sources),\ |
| 656 | $(eval $(call compile-dotdot-cpp-file,$(s),\ |
| 657 | $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\ |
| 658 | dotdot_objects))) |
| 659 | |
| 660 | 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] | 661 | cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o)) |
| 662 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 663 | $(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode) |
| 664 | $(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags) |
| 665 | $(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 666 | $(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] | 667 | |
| 668 | cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects) |
| 669 | |
| 670 | ifneq ($(strip $(cpp_objects)),) |
| 671 | $(cpp_objects): $(intermediates)/%.o: \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 672 | $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \ |
Ying Wang | 9c3aa05 | 2013-02-20 13:34:05 -0800 | [diff] [blame] | 673 | $(yacc_cpps) $(proto_generated_headers) \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 674 | $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 675 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 676 | -include $(cpp_objects:%.o=%.P) |
| 677 | endif |
| 678 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 679 | cpp_objects += $(dotdot_arm_objects) $(dotdot_objects) |
| 680 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 681 | ########################################################### |
| 682 | ## C++: Compile generated .cpp files to .o. |
| 683 | ########################################################### |
| 684 | |
Ying Wang | ec6d626 | 2014-01-16 16:21:03 -0800 | [diff] [blame] | 685 | 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] | 686 | gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o) |
| 687 | |
| 688 | ifneq ($(strip $(gen_cpp_objects)),) |
| 689 | # Compile all generated files as thumb. |
| 690 | # TODO: support compiling certain generated files as arm. |
| 691 | $(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 692 | $(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 693 | $(gen_cpp_objects): $(intermediates)/%.o: \ |
| 694 | $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \ |
Ying Wang | 9c3aa05 | 2013-02-20 13:34:05 -0800 | [diff] [blame] | 695 | $(proto_generated_headers) \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 696 | $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 697 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 698 | -include $(gen_cpp_objects:%.o=%.P) |
| 699 | endif |
| 700 | |
| 701 | ########################################################### |
| 702 | ## S: Compile generated .S and .s files to .o. |
| 703 | ########################################################### |
| 704 | |
Ying Wang | ec6d626 | 2014-01-16 16:21:03 -0800 | [diff] [blame] | 705 | gen_S_sources := $(filter %.S,$(my_generated_sources)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 706 | gen_S_objects := $(gen_S_sources:%.S=%.o) |
| 707 | |
| 708 | ifneq ($(strip $(gen_S_sources)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 709 | $(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 710 | $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 711 | $(transform-$(PRIVATE_HOST)s-to-o) |
| 712 | -include $(gen_S_objects:%.o=%.P) |
| 713 | endif |
| 714 | |
Ying Wang | ec6d626 | 2014-01-16 16:21:03 -0800 | [diff] [blame] | 715 | gen_s_sources := $(filter %.s,$(my_generated_sources)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 716 | gen_s_objects := $(gen_s_sources:%.s=%.o) |
| 717 | |
| 718 | ifneq ($(strip $(gen_s_objects)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 719 | $(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 720 | $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 721 | $(transform-$(PRIVATE_HOST)s-to-o-no-deps) |
| 722 | -include $(gen_s_objects:%.o=%.P) |
| 723 | endif |
| 724 | |
| 725 | gen_asm_objects := $(gen_S_objects) $(gen_s_objects) |
| 726 | |
| 727 | ########################################################### |
Torne (Richard Coles) | aace202 | 2013-02-21 14:01:35 +0000 | [diff] [blame] | 728 | ## o: Include generated .o files in output. |
| 729 | ########################################################### |
| 730 | |
Ying Wang | ec6d626 | 2014-01-16 16:21:03 -0800 | [diff] [blame] | 731 | gen_o_objects := $(filter %.o,$(my_generated_sources)) |
Torne (Richard Coles) | aace202 | 2013-02-21 14:01:35 +0000 | [diff] [blame] | 732 | |
| 733 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 734 | ## C: Compile .c files to .o. |
| 735 | ########################################################### |
| 736 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 737 | c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files))) |
| 738 | dotdot_arm_sources := $(filter ../%,$(c_arm_sources)) |
| 739 | c_arm_sources := $(filter-out ../%,$(c_arm_sources)) |
| 740 | c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 741 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 742 | # For source files starting with ../, we remove all the ../ in the object file path, |
| 743 | # to avoid object file escaping the intermediate directory. |
| 744 | dotdot_arm_objects := |
| 745 | $(foreach s,$(dotdot_arm_sources),\ |
| 746 | $(eval $(call compile-dotdot-c-file,$(s),\ |
| 747 | $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\ |
| 748 | dotdot_arm_objects))) |
| 749 | |
| 750 | dotdot_sources := $(filter ../%.c, $(my_src_files)) |
| 751 | dotdot_objects := |
| 752 | $(foreach s, $(dotdot_sources),\ |
| 753 | $(eval $(call compile-dotdot-c-file,$(s),\ |
| 754 | $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\ |
| 755 | dotdot_objects))) |
| 756 | |
| 757 | 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] | 758 | c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o)) |
| 759 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 760 | $(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode) |
| 761 | $(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags) |
| 762 | $(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 763 | $(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] | 764 | |
| 765 | c_objects := $(c_arm_objects) $(c_normal_objects) |
| 766 | |
| 767 | ifneq ($(strip $(c_objects)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 768 | $(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] | 769 | $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 770 | $(transform-$(PRIVATE_HOST)c-to-o) |
| 771 | -include $(c_objects:%.o=%.P) |
| 772 | endif |
| 773 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 774 | c_objects += $(dotdot_arm_objects) $(dotdot_objects) |
| 775 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 776 | ########################################################### |
Jack Palevich | e7b3e2c | 2009-05-04 14:32:44 -0700 | [diff] [blame] | 777 | ## C: Compile generated .c files to .o. |
| 778 | ########################################################### |
| 779 | |
Ying Wang | ec6d626 | 2014-01-16 16:21:03 -0800 | [diff] [blame] | 780 | gen_c_sources := $(filter %.c,$(my_generated_sources)) |
Jack Palevich | e7b3e2c | 2009-05-04 14:32:44 -0700 | [diff] [blame] | 781 | gen_c_objects := $(gen_c_sources:%.c=%.o) |
| 782 | |
| 783 | ifneq ($(strip $(gen_c_objects)),) |
| 784 | # Compile all generated files as thumb. |
| 785 | # TODO: support compiling certain generated files as arm. |
| 786 | $(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 787 | $(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 788 | $(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 789 | $(my_additional_dependencies) |
Jack Palevich | e7b3e2c | 2009-05-04 14:32:44 -0700 | [diff] [blame] | 790 | $(transform-$(PRIVATE_HOST)c-to-o) |
| 791 | -include $(gen_c_objects:%.o=%.P) |
| 792 | endif |
| 793 | |
| 794 | ########################################################### |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 795 | ## ObjC: Compile .m files to .o |
| 796 | ########################################################### |
| 797 | |
Ying Wang | b8e0185 | 2014-01-23 15:09:04 -0800 | [diff] [blame] | 798 | objc_sources := $(filter %.m,$(my_src_files)) |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 799 | objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o)) |
| 800 | |
| 801 | ifneq ($(strip $(objc_objects)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 802 | $(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] | 803 | $(my_additional_dependencies) |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 804 | $(transform-$(PRIVATE_HOST)m-to-o) |
| 805 | -include $(objc_objects:%.o=%.P) |
| 806 | endif |
| 807 | |
| 808 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 809 | ## AS: Compile .S files to .o. |
| 810 | ########################################################### |
| 811 | |
Ying Wang | b8e0185 | 2014-01-23 15:09:04 -0800 | [diff] [blame] | 812 | asm_sources_S := $(filter %.S,$(my_src_files)) |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 813 | dotdot_sources := $(filter ../%,$(asm_sources_S)) |
| 814 | asm_sources_S := $(filter-out ../%,$(asm_sources_S)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 815 | asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o)) |
| 816 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 817 | dotdot_objects_S := |
| 818 | $(foreach s,$(dotdot_sources),\ |
| 819 | $(eval $(call compile-dotdot-s-file,$(s),\ |
| 820 | $(my_additional_dependencies),\ |
| 821 | dotdot_objects_S))) |
| 822 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 823 | ifneq ($(strip $(asm_objects_S)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 824 | $(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 825 | $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 826 | $(transform-$(PRIVATE_HOST)s-to-o) |
| 827 | -include $(asm_objects_S:%.o=%.P) |
| 828 | endif |
| 829 | |
Ying Wang | b8e0185 | 2014-01-23 15:09:04 -0800 | [diff] [blame] | 830 | asm_sources_s := $(filter %.s,$(my_src_files)) |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 831 | dotdot_sources := $(filter ../%,$(asm_sources_s)) |
| 832 | asm_sources_s := $(filter-out ../%,$(asm_sources_s)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 833 | asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o)) |
| 834 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 835 | dotdot_objects_s := |
| 836 | $(foreach s,$(dotdot_sources),\ |
| 837 | $(eval $(call compile-dotdot-s-file-no-deps,$(s),\ |
| 838 | $(my_additional_dependencies),\ |
| 839 | dotdot_objects_s))) |
| 840 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 841 | ifneq ($(strip $(asm_objects_s)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 842 | $(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 843 | $(my_additional_dependencies) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 844 | $(transform-$(PRIVATE_HOST)s-to-o-no-deps) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 845 | endif |
| 846 | |
Ying Wang | fb22a42 | 2015-03-10 18:03:11 -0700 | [diff] [blame] | 847 | asm_objects := $(dotdot_objects_S) $(dotdot_objects_s) $(asm_objects_S) $(asm_objects_s) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 848 | |
| 849 | |
Ying Wang | fe1e5c3 | 2015-03-09 18:57:40 -0700 | [diff] [blame] | 850 | # .asm for x86/x86_64 needs to be compiled with yasm. |
Ying Wang | 7b913ce | 2014-06-05 19:05:47 -0700 | [diff] [blame] | 851 | asm_sources_asm := $(filter %.asm,$(my_src_files)) |
| 852 | ifneq ($(strip $(asm_sources_asm)),) |
| 853 | asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o)) |
| 854 | $(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \ |
Dan Albert | 954b5bd | 2014-11-08 22:20:03 -0800 | [diff] [blame] | 855 | $(my_additional_dependencies) |
Ying Wang | 7b913ce | 2014-06-05 19:05:47 -0700 | [diff] [blame] | 856 | $(transform-asm-to-o) |
| 857 | |
| 858 | asm_objects += $(asm_objects_asm) |
| 859 | endif |
Ying Wang | 7b913ce | 2014-06-05 19:05:47 -0700 | [diff] [blame] | 860 | |
Jeff Davidson | 680f071 | 2015-01-08 18:25:30 -0800 | [diff] [blame] | 861 | |
| 862 | ########################################################## |
| 863 | ## Set up installed module dependency |
| 864 | ## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for |
| 865 | ## they may cusomize their install path with LOCAL_MODULE_PATH |
| 866 | ########################################################## |
| 867 | # Get the list of INSTALLED libraries as module names. |
| 868 | ifdef LOCAL_SDK_VERSION |
| 869 | installed_shared_library_module_names := \ |
| 870 | $(my_shared_libraries) |
| 871 | else |
| 872 | installed_shared_library_module_names := \ |
| 873 | $(my_shared_libraries) $(my_system_shared_libraries) |
| 874 | endif |
| 875 | |
| 876 | # The real dependency will be added after all Android.mks are loaded and the install paths |
| 877 | # of the shared libraries are determined. |
| 878 | ifdef LOCAL_INSTALLED_MODULE |
| 879 | ifdef installed_shared_library_module_names |
| 880 | $(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \ |
| 881 | $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names))) |
| 882 | endif |
| 883 | endif |
| 884 | |
| 885 | |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 886 | #################################################### |
| 887 | ## Import includes |
| 888 | #################################################### |
| 889 | import_includes := $(intermediates)/import_includes |
| 890 | import_includes_deps := $(strip \ |
| 891 | $(foreach l, $(installed_shared_library_module_names), \ |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 892 | $(call intermediates-dir-for,SHARED_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/export_includes) \ |
Colin Cross | 90353fe | 2014-02-04 14:53:25 -0800 | [diff] [blame] | 893 | $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \ |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 894 | $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/export_includes)) |
Ying Wang | 14d02a3 | 2015-01-22 15:44:04 -0800 | [diff] [blame] | 895 | $(import_includes): PRIVATE_IMPORT_EXPORT_INCLUDES := $(import_includes_deps) |
| 896 | $(import_includes) : $(LOCAL_MODULE_MAKEFILE) $(import_includes_deps) |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 897 | @echo Import includes file: $@ |
| 898 | $(hide) mkdir -p $(dir $@) && rm -f $@ |
| 899 | ifdef import_includes_deps |
Ying Wang | 14d02a3 | 2015-01-22 15:44:04 -0800 | [diff] [blame] | 900 | $(hide) for f in $(PRIVATE_IMPORT_EXPORT_INCLUDES); do \ |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 901 | cat $$f >> $@; \ |
| 902 | done |
| 903 | else |
| 904 | $(hide) touch $@ |
| 905 | endif |
| 906 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 907 | ########################################################### |
| 908 | ## Common object handling. |
| 909 | ########################################################### |
| 910 | |
| 911 | # some rules depend on asm_objects being first. If your code depends on |
| 912 | # being first, it's reasonable to require it to be assembly |
Torne (Richard Coles) | a5afbe8 | 2013-08-29 15:36:34 +0100 | [diff] [blame] | 913 | normal_objects := \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 914 | $(asm_objects) \ |
| 915 | $(cpp_objects) \ |
| 916 | $(gen_cpp_objects) \ |
| 917 | $(gen_asm_objects) \ |
| 918 | $(c_objects) \ |
| 919 | $(gen_c_objects) \ |
| 920 | $(objc_objects) \ |
| 921 | $(yacc_objects) \ |
| 922 | $(lex_objects) \ |
| 923 | $(proto_generated_objects) \ |
Torne (Richard Coles) | a5afbe8 | 2013-08-29 15:36:34 +0100 | [diff] [blame] | 924 | $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES)) |
| 925 | |
| 926 | all_objects := $(normal_objects) $(gen_o_objects) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 927 | |
Colin Cross | 2d20670 | 2014-02-13 13:41:52 -0800 | [diff] [blame] | 928 | 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] | 929 | |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 930 | ifndef LOCAL_SDK_VERSION |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 931 | my_c_includes += $(JNI_H_INCLUDE) |
Ying Wang | bce4b75 | 2010-07-22 15:51:56 -0700 | [diff] [blame] | 932 | endif |
| 933 | |
Torne (Richard Coles) | a5afbe8 | 2013-08-29 15:36:34 +0100 | [diff] [blame] | 934 | # all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES; |
| 935 | # use normal_objects here to avoid creating circular dependencies. This assumes |
| 936 | # that custom build rules which generate .o files don't consume other generated |
| 937 | # 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] | 938 | $(normal_objects) : | $(my_generated_sources) |
Torne (Richard Coles) | a5afbe8 | 2013-08-29 15:36:34 +0100 | [diff] [blame] | 939 | $(all_objects) : | $(import_includes) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 940 | ALL_C_CPP_ETC_OBJECTS += $(all_objects) |
| 941 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 942 | |
| 943 | ########################################################### |
| 944 | # Standard library handling. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 945 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 946 | |
| 947 | ########################################################### |
| 948 | # The list of libraries that this module will link against are in |
| 949 | # these variables. Each is a list of bare module names like "libc libm". |
| 950 | # |
| 951 | # LOCAL_SHARED_LIBRARIES |
| 952 | # LOCAL_STATIC_LIBRARIES |
| 953 | # LOCAL_WHOLE_STATIC_LIBRARIES |
| 954 | # |
| 955 | # We need to convert the bare names into the dependencies that |
| 956 | # we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE. |
| 957 | # LOCAL_BUILT_MODULE should depend on the BUILT versions of the |
| 958 | # libraries, so that simply building this module doesn't force |
| 959 | # an install of a library. Similarly, LOCAL_INSTALLED_MODULE |
| 960 | # should depend on the INSTALLED versions of the libraries so |
| 961 | # that they get installed when this module does. |
| 962 | ########################################################### |
| 963 | # NOTE: |
| 964 | # WHOLE_STATIC_LIBRARIES are libraries that are pulled into the |
| 965 | # module without leaving anything out, which is useful for turning |
| 966 | # a collection of .a files into a .so file. Linking against a |
| 967 | # normal STATIC_LIBRARY will only pull in code/symbols that are |
| 968 | # referenced by the module. (see gcc/ld's --whole-archive option) |
| 969 | ########################################################### |
| 970 | |
| 971 | # Get the list of BUILT libraries, which are under |
| 972 | # various intermediates directories. |
| 973 | so_suffix := $($(my_prefix)SHLIB_SUFFIX) |
| 974 | a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX) |
| 975 | |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 976 | ifdef LOCAL_SDK_VERSION |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 977 | built_shared_libraries := \ |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 978 | $(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] | 979 | $(addsuffix $(so_suffix), \ |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 980 | $(my_shared_libraries))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 981 | |
Ying Wang | d8d3721 | 2014-03-21 16:17:04 -0700 | [diff] [blame] | 982 | # Add the NDK libraries to the built module dependency |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 983 | my_system_shared_libraries_fullpath := \ |
| 984 | $(my_ndk_stl_shared_lib_fullpath) \ |
Andrew Hsieh | 140761af0 | 2014-04-25 23:47:10 -0700 | [diff] [blame] | 985 | $(addprefix $(my_ndk_sysroot_lib)/, \ |
Ying Wang | d8d3721 | 2014-03-21 16:17:04 -0700 | [diff] [blame] | 986 | $(addsuffix $(so_suffix), $(my_system_shared_libraries))) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 987 | |
| 988 | built_shared_libraries += $(my_system_shared_libraries_fullpath) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 989 | else |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 990 | built_shared_libraries := \ |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 991 | $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \ |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 992 | $(addsuffix $(so_suffix), \ |
Ying Wang | d8d3721 | 2014-03-21 16:17:04 -0700 | [diff] [blame] | 993 | $(installed_shared_library_module_names))) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 994 | endif |
| 995 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 996 | built_static_libraries := \ |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 997 | $(foreach lib,$(my_static_libraries), \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 998 | $(call intermediates-dir-for, \ |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 999 | STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/$(lib)$(a_suffix)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1000 | |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 1001 | ifdef LOCAL_SDK_VERSION |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 1002 | built_static_libraries += $(my_ndk_stl_static_lib) |
| 1003 | endif |
| 1004 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1005 | built_whole_libraries := \ |
Colin Cross | 90353fe | 2014-02-04 14:53:25 -0800 | [diff] [blame] | 1006 | $(foreach lib,$(my_whole_static_libraries), \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1007 | $(call intermediates-dir-for, \ |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 1008 | STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/$(lib)$(a_suffix)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1009 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1010 | # We don't care about installed static libraries, since the |
| 1011 | # libraries have already been linked into the module at that point. |
| 1012 | # We do, however, care about the NOTICE files for any static |
Steve Block | d14d3b4 | 2012-03-01 11:34:41 +0000 | [diff] [blame] | 1013 | # libraries that we use. (see notice_files.mk) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1014 | |
| 1015 | installed_static_library_notice_file_targets := \ |
Colin Cross | 90353fe | 2014-02-04 14:53:25 -0800 | [diff] [blame] | 1016 | $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1017 | NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib)) |
| 1018 | |
Doug Kwan | 9a8ecf9 | 2011-05-10 21:50:58 -0700 | [diff] [blame] | 1019 | # Default is -fno-rtti. |
Doug Kwan | e3c3c6d | 2011-06-07 10:55:48 -0700 | [diff] [blame] | 1020 | ifeq ($(strip $(LOCAL_RTTI_FLAG)),) |
| 1021 | LOCAL_RTTI_FLAG := -fno-rtti |
| 1022 | endif |
Doug Kwan | 9a8ecf9 | 2011-05-10 21:50:58 -0700 | [diff] [blame] | 1023 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1024 | ########################################################### |
| 1025 | # Rule-specific variable definitions |
| 1026 | ########################################################### |
Logan Chien | e6f6543 | 2013-12-10 19:07:41 +0800 | [diff] [blame] | 1027 | |
Ying Wang | 824344a | 2014-05-27 13:03:36 -0700 | [diff] [blame] | 1028 | ifeq ($(my_clang),true) |
Chih-Hung Hsieh | 9aa69a6 | 2014-09-04 17:15:47 -0700 | [diff] [blame] | 1029 | my_cflags += $(LOCAL_CLANG_CFLAGS) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 1030 | my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS) |
Dan Albert | d2fa96d | 2014-11-28 14:00:12 -0800 | [diff] [blame] | 1031 | my_cppflags += $(LOCAL_CLANG_CPPFLAGS) |
Chih-Hung Hsieh | 9aa69a6 | 2014-09-04 17:15:47 -0700 | [diff] [blame] | 1032 | my_asflags += $(LOCAL_CLANG_ASFLAGS) |
| 1033 | my_ldflags += $(LOCAL_CLANG_LDFLAGS) |
Chih-Hung Hsieh | 619fdb8 | 2014-09-26 17:13:48 -0700 | [diff] [blame] | 1034 | 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] | 1035 | 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] | 1036 | my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix)) |
| 1037 | my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix)) |
| 1038 | 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] | 1039 | my_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cflags)) |
| 1040 | my_cppflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cppflags)) |
| 1041 | my_asflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_asflags)) |
| 1042 | my_ldflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_ldflags)) |
Logan Chien | e6f6543 | 2013-12-10 19:07:41 +0800 | [diff] [blame] | 1043 | endif |
| 1044 | |
Ying Wang | d791463 | 2014-10-28 14:50:59 -0700 | [diff] [blame] | 1045 | ifeq ($(my_fdo_build), true) |
| 1046 | my_cflags := $(patsubst -Os,-O2,$(my_cflags)) |
| 1047 | fdo_incompatible_flags := -fno-early-inlining -finline-limit=% |
| 1048 | my_cflags := $(filter-out $(fdo_incompatible_flags),$(my_cflags)) |
Dehao Chen | 295a6d2 | 2014-09-19 10:18:12 -0700 | [diff] [blame] | 1049 | endif |
| 1050 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1051 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 1052 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags) |
Stephen Hines | 1568029 | 2014-11-26 00:53:46 -0800 | [diff] [blame] | 1053 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(my_conlyflags) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 1054 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags) |
| 1055 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags) |
Doug Kwan | 9a8ecf9 | 2011-05-10 21:50:58 -0700 | [diff] [blame] | 1056 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1057 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 1058 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes) |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 1059 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 1060 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags) |
Dan Albert | b05f2ca | 2014-09-12 14:46:57 -0700 | [diff] [blame] | 1061 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs) |
Ying Wang | b8e0185 | 2014-01-23 15:09:04 -0800 | [diff] [blame] | 1062 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_CRT := $(strip $(LOCAL_NO_CRT) $(LOCAL_NO_CRT_$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1063 | |
| 1064 | # this is really the way to get the files onto the command line instead |
| 1065 | # of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work |
| 1066 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries) |
| 1067 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries) |
| 1068 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries) |
| 1069 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects) |
| 1070 | |
| 1071 | ########################################################### |
| 1072 | # Define library dependencies. |
| 1073 | ########################################################### |
| 1074 | # all_libraries is used for the dependencies on LOCAL_BUILT_MODULE. |
| 1075 | all_libraries := \ |
| 1076 | $(built_shared_libraries) \ |
| 1077 | $(built_static_libraries) \ |
| 1078 | $(built_whole_libraries) |
| 1079 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1080 | # Also depend on the notice files for any static libraries that |
| 1081 | # are linked into this module. This will force them to be installed |
| 1082 | # when this module is. |
| 1083 | $(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets) |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 1084 | |
| 1085 | ########################################################### |
| 1086 | # Export includes |
| 1087 | ########################################################### |
| 1088 | export_includes := $(intermediates)/export_includes |
| 1089 | $(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(LOCAL_EXPORT_C_INCLUDE_DIRS) |
Ying Wang | 4908595 | 2014-05-06 13:03:32 -0700 | [diff] [blame] | 1090 | # Make sure .pb.h are already generated before any dependent source files get compiled. |
| 1091 | $(export_includes) : $(LOCAL_MODULE_MAKEFILE) $(proto_generated_headers) |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 1092 | @echo Export includes file: $< -- $@ |
| 1093 | $(hide) mkdir -p $(dir $@) && rm -f $@ |
| 1094 | ifdef LOCAL_EXPORT_C_INCLUDE_DIRS |
| 1095 | $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \ |
| 1096 | echo "-I $$d" >> $@; \ |
| 1097 | done |
| 1098 | else |
| 1099 | $(hide) touch $@ |
| 1100 | endif |
Ying Wang | 616e596 | 2012-04-18 17:35:55 -0700 | [diff] [blame] | 1101 | |
| 1102 | # Make sure export_includes gets generated when you are running mm/mmm |
| 1103 | $(LOCAL_BUILT_MODULE) : | $(export_includes) |