blob: 0d557c7d3615ecd5d0ed692157a1fde5caac3ad9 [file] [log] [blame]
Ying Wang75e8fcb2014-10-07 13:03:29 -07001#############################################################
2## Set up flags based on LOCAL_CXX_STL.
Dan Willemsen057aaea2015-08-14 12:59:50 -07003## Input variables: LOCAL_CXX_STL, my_prefix
Ying Wang75e8fcb2014-10-07 13:03:29 -07004## Output variables: My_cflags, my_c_includes, my_shared_libraries, etc.
5#############################################################
6
Ying Wang75e8fcb2014-10-07 13:03:29 -07007# Select the appropriate C++ STL
8ifeq ($(strip $(LOCAL_CXX_STL)),default)
9 ifndef LOCAL_SDK_VERSION
Dan Albert93766b22014-10-16 19:07:41 -070010 # Platform code. Select the appropriate STL.
Dan Albert88a8ce62015-05-04 16:34:19 -070011 my_cxx_stl := libc++
12 ifdef LOCAL_IS_HOST_MODULE
13 ifneq (,$(BUILD_HOST_static))
14 my_cxx_stl := libc++_static
Dan Albert8bf4cc92015-03-03 14:10:27 -080015 endif
Ying Wang75e8fcb2014-10-07 13:03:29 -070016 endif
17 else
18 my_cxx_stl := ndk
19 endif
20else
21 my_cxx_stl := $(strip $(LOCAL_CXX_STL))
Dan Albertef3e7cf2015-07-27 14:14:56 -070022 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 Wang75e8fcb2014-10-07 13:03:29 -070034endif
35
Dan Albertb5eb9052015-03-03 18:30:27 -080036my_link_type := dynamic
37ifdef 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
44else
45 ifeq (true,$(LOCAL_FORCE_STATIC_EXECUTABLE))
46 my_link_type := static
47 endif
48endif
49
Dan Willemsenc9aa6fc2016-09-13 10:44:44 -070050my_cxx_ldlibs :=
Ying Wang75e8fcb2014-10-07 13:03:29 -070051ifneq ($(filter $(my_cxx_stl),libc++ libc++_static),)
Dan Albert9262b6f2018-01-11 13:24:32 -080052 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 Albert2a4a0232015-05-12 11:00:31 -070062 # Note that the structure of this means that LOCAL_CXX_STL := libc++ will
63 # use the static libc++ for static executables.
Dan Albert0ad5bd22015-05-06 10:08:11 -070064 ifeq ($(my_link_type),dynamic)
Dan Albert2a4a0232015-05-12 11:00:31 -070065 ifeq ($(my_cxx_stl),libc++)
66 my_shared_libraries += libc++
67 else
68 my_static_libraries += libc++_static
69 endif
Ying Wang75e8fcb2014-10-07 13:03:29 -070070 else
71 my_static_libraries += libc++_static
72 endif
73
74 ifdef LOCAL_IS_HOST_MODULE
75 my_cppflags += -nostdinc++
Colin Cross84783a72019-10-03 16:04:52 -070076 my_ldflags += -nostdlib++
Dan Albert50367292015-03-31 15:18:17 -070077 else
Dan Albertd892b632019-08-13 13:15:04 -070078 my_static_libraries += libc++demangle
Dan Albert50367292015-03-31 15:18:17 -070079
80 ifeq ($(my_link_type),static)
Ryan Prichard6f19c3e2020-12-16 03:37:40 -080081 my_static_libraries += libm libc libunwind
Dan Albert50367292015-03-31 15:18:17 -070082 endif
Ying Wang75e8fcb2014-10-07 13:03:29 -070083 endif
Ying Wang75e8fcb2014-10-07 13:03:29 -070084else ifeq ($(my_cxx_stl),ndk)
Ryan Prichard6d748702021-03-31 15:30:30 -070085 # Using an NDK STL. Handled in binary.mk.
Dan Albert93e8cf72014-10-16 21:18:15 -070086else ifeq ($(my_cxx_stl),libstdc++)
Pirama Arumuga Nainar80ba3452018-08-08 10:29:00 -070087 $(error $(LOCAL_PATH): $(LOCAL_MODULE): libstdc++ is not supported)
Ying Wang75e8fcb2014-10-07 13:03:29 -070088else ifeq ($(my_cxx_stl),none)
89 ifdef LOCAL_IS_HOST_MODULE
90 my_cppflags += -nostdinc++
Colin Cross84783a72019-10-03 16:04:52 -070091 my_ldflags += -nostdlib++
Ying Wang75e8fcb2014-10-07 13:03:29 -070092 endif
93else
Dan Albert3a360a72015-05-06 10:08:32 -070094 $(error $(LOCAL_PATH): $(LOCAL_MODULE): $(my_cxx_stl) is not a supported STL.)
Ying Wang75e8fcb2014-10-07 13:03:29 -070095endif