Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 1 | ############################################################# |
| 2 | ## Set up flags based on LOCAL_CXX_STL. |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 3 | ## Input variables: LOCAL_CXX_STL, my_prefix |
Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 4 | ## Output variables: My_cflags, my_c_includes, my_shared_libraries, etc. |
| 5 | ############################################################# |
| 6 | |
Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 7 | # Select the appropriate C++ STL |
| 8 | ifeq ($(strip $(LOCAL_CXX_STL)),default) |
| 9 | ifndef LOCAL_SDK_VERSION |
Dan Albert | 93766b2 | 2014-10-16 19:07:41 -0700 | [diff] [blame] | 10 | # Platform code. Select the appropriate STL. |
Dan Albert | 88a8ce6 | 2015-05-04 16:34:19 -0700 | [diff] [blame] | 11 | my_cxx_stl := libc++ |
| 12 | ifdef LOCAL_IS_HOST_MODULE |
| 13 | ifneq (,$(BUILD_HOST_static)) |
| 14 | my_cxx_stl := libc++_static |
Dan Albert | 8bf4cc9 | 2015-03-03 14:10:27 -0800 | [diff] [blame] | 15 | endif |
Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 16 | endif |
| 17 | else |
| 18 | my_cxx_stl := ndk |
| 19 | endif |
| 20 | else |
| 21 | my_cxx_stl := $(strip $(LOCAL_CXX_STL)) |
Dan Albert | ef3e7cf | 2015-07-27 14:14:56 -0700 | [diff] [blame] | 22 | ifdef LOCAL_SDK_VERSION |
| 23 | # The NDK has historically used LOCAL_NDK_STL_VARIANT to specify the |
| 24 | # STL. An Android.mk that specifies both LOCAL_CXX_STL and |
| 25 | # LOCAL_SDK_VERSION will incorrectly try (and most likely fail) to use |
| 26 | # the platform STL in an NDK binary. Emit an error to direct the user |
| 27 | # toward the correct option. |
| 28 | # |
| 29 | # Note that we could also accept LOCAL_CXX_STL as an alias for |
| 30 | # LOCAL_NDK_STL_VARIANT (and in fact soong does use the same name), but |
| 31 | # the two options use different names for the STLs. |
| 32 | $(error $(LOCAL_PATH): $(LOCAL_MODULE): Must use LOCAL_NDK_STL_VARIANT rather than LOCAL_CXX_STL for NDK binaries) |
| 33 | endif |
Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 34 | endif |
| 35 | |
Dan Albert | b5eb905 | 2015-03-03 18:30:27 -0800 | [diff] [blame] | 36 | my_link_type := dynamic |
| 37 | ifdef LOCAL_IS_HOST_MODULE |
| 38 | ifneq (,$(BUILD_HOST_static)) |
| 39 | my_link_type := static |
| 40 | endif |
| 41 | ifeq (-static,$(filter -static,$(my_ldflags))) |
| 42 | my_link_type := static |
| 43 | endif |
| 44 | else |
| 45 | ifeq (true,$(LOCAL_FORCE_STATIC_EXECUTABLE)) |
| 46 | my_link_type := static |
| 47 | endif |
| 48 | endif |
| 49 | |
Dan Willemsen | c9aa6fc | 2016-09-13 10:44:44 -0700 | [diff] [blame] | 50 | my_cxx_ldlibs := |
Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 51 | ifneq ($(filter $(my_cxx_stl),libc++ libc++_static),) |
Dan Albert | 9262b6f | 2018-01-11 13:24:32 -0800 | [diff] [blame] | 52 | ifeq ($($(my_prefix)OS),darwin) |
| 53 | # libc++'s headers are annotated with availability macros that indicate |
| 54 | # which version of Mac OS was the first to ship with a libc++ feature |
| 55 | # available in its *system's* libc++.dylib. We do not use the system's |
| 56 | # library, but rather ship our own. As such, these availability |
| 57 | # attributes are meaningless for us but cause build breaks when we try |
| 58 | # to use code that would not be available in the system's dylib. |
| 59 | my_cppflags += -D_LIBCPP_DISABLE_AVAILABILITY |
| 60 | endif |
| 61 | |
Dan Albert | 2a4a023 | 2015-05-12 11:00:31 -0700 | [diff] [blame] | 62 | # Note that the structure of this means that LOCAL_CXX_STL := libc++ will |
| 63 | # use the static libc++ for static executables. |
Dan Albert | 0ad5bd2 | 2015-05-06 10:08:11 -0700 | [diff] [blame] | 64 | ifeq ($(my_link_type),dynamic) |
Dan Albert | 2a4a023 | 2015-05-12 11:00:31 -0700 | [diff] [blame] | 65 | ifeq ($(my_cxx_stl),libc++) |
| 66 | my_shared_libraries += libc++ |
| 67 | else |
| 68 | my_static_libraries += libc++_static |
| 69 | endif |
Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 70 | else |
| 71 | my_static_libraries += libc++_static |
| 72 | endif |
| 73 | |
| 74 | ifdef LOCAL_IS_HOST_MODULE |
| 75 | my_cppflags += -nostdinc++ |
Colin Cross | 84783a7 | 2019-10-03 16:04:52 -0700 | [diff] [blame] | 76 | my_ldflags += -nostdlib++ |
Dan Albert | 5036729 | 2015-03-31 15:18:17 -0700 | [diff] [blame] | 77 | else |
Dan Albert | d892b63 | 2019-08-13 13:15:04 -0700 | [diff] [blame] | 78 | my_static_libraries += libc++demangle |
Dan Albert | 5036729 | 2015-03-31 15:18:17 -0700 | [diff] [blame] | 79 | |
| 80 | ifeq ($(my_link_type),static) |
Ryan Prichard | acf8b0f | 2019-10-21 20:47:53 -0700 | [diff] [blame] | 81 | my_static_libraries += libm libc |
Peter Collingbourne | 86cdf9c | 2019-12-10 18:42:11 -0800 | [diff] [blame] | 82 | ifeq (arm,$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) |
| 83 | my_static_libraries += libunwind_llvm |
| 84 | my_ldflags += -Wl,--exclude-libs,libunwind_llvm.a |
| 85 | else |
| 86 | my_static_libraries += libgcc_stripped |
| 87 | my_ldflags += -Wl,--exclude-libs,libgcc_stripped.a |
| 88 | endif |
Dan Albert | 5036729 | 2015-03-31 15:18:17 -0700 | [diff] [blame] | 89 | endif |
Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 90 | endif |
Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 91 | else ifeq ($(my_cxx_stl),ndk) |
Peter Collingbourne | 86cdf9c | 2019-12-10 18:42:11 -0800 | [diff] [blame] | 92 | # Using an NDK STL. Handled in binary.mk, except for the unwinder. |
| 93 | ifeq (arm,$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) |
| 94 | my_static_libraries += libunwind_llvm |
| 95 | my_ldflags += -Wl,--exclude-libs,libunwind_llvm.a |
| 96 | else |
| 97 | my_static_libraries += libgcc_stripped |
| 98 | my_ldflags += -Wl,--exclude-libs,libgcc_stripped.a |
| 99 | endif |
Dan Albert | 93e8cf7 | 2014-10-16 21:18:15 -0700 | [diff] [blame] | 100 | else ifeq ($(my_cxx_stl),libstdc++) |
Pirama Arumuga Nainar | 80ba345 | 2018-08-08 10:29:00 -0700 | [diff] [blame] | 101 | $(error $(LOCAL_PATH): $(LOCAL_MODULE): libstdc++ is not supported) |
Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 102 | else ifeq ($(my_cxx_stl),none) |
| 103 | ifdef LOCAL_IS_HOST_MODULE |
| 104 | my_cppflags += -nostdinc++ |
Colin Cross | 84783a7 | 2019-10-03 16:04:52 -0700 | [diff] [blame] | 105 | my_ldflags += -nostdlib++ |
Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 106 | endif |
| 107 | else |
Dan Albert | 3a360a7 | 2015-05-06 10:08:32 -0700 | [diff] [blame] | 108 | $(error $(LOCAL_PATH): $(LOCAL_MODULE): $(my_cxx_stl) is not a supported STL.) |
Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 109 | endif |