blob: 3590079d7166b5184df0baf3dcf9e83fbaef96e3 [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
Dan Albert88a8ce62015-05-04 16:34:19 -070016
Dan Willemsen1ca3b702015-08-13 17:41:56 -070017 ifeq ($($(my_prefix)OS),windows)
Pirama Arumuga Nainar80ba3452018-08-08 10:29:00 -070018 my_cxx_stl := libc++_static
Dan Albert88a8ce62015-05-04 16:34:19 -070019 endif
Ying Wang75e8fcb2014-10-07 13:03:29 -070020 endif
21 else
22 my_cxx_stl := ndk
23 endif
24else
25 my_cxx_stl := $(strip $(LOCAL_CXX_STL))
Dan Albertef3e7cf2015-07-27 14:14:56 -070026 ifdef LOCAL_SDK_VERSION
27 # The NDK has historically used LOCAL_NDK_STL_VARIANT to specify the
28 # STL. An Android.mk that specifies both LOCAL_CXX_STL and
29 # LOCAL_SDK_VERSION will incorrectly try (and most likely fail) to use
30 # the platform STL in an NDK binary. Emit an error to direct the user
31 # toward the correct option.
32 #
33 # Note that we could also accept LOCAL_CXX_STL as an alias for
34 # LOCAL_NDK_STL_VARIANT (and in fact soong does use the same name), but
35 # the two options use different names for the STLs.
36 $(error $(LOCAL_PATH): $(LOCAL_MODULE): Must use LOCAL_NDK_STL_VARIANT rather than LOCAL_CXX_STL for NDK binaries)
37 endif
Dan Willemsen1ca3b702015-08-13 17:41:56 -070038 ifdef LOCAL_IS_HOST_MODULE
39 ifeq ($($(my_prefix)OS),windows)
Pirama Arumuga Nainar80ba3452018-08-08 10:29:00 -070040 ifneq ($(filter $(my_cxx_stl),libc++),)
41 # only libc++_static is supported on mingw.
42 my_cxx_stl := libc++_static
Dan Willemsen1ca3b702015-08-13 17:41:56 -070043 endif
44 endif
45 endif
Ying Wang75e8fcb2014-10-07 13:03:29 -070046endif
47
Dan Albert4f2afde2015-03-03 17:42:28 -080048# Yes, this is actually what the clang driver does.
Dan Albertd1d68b12015-09-11 10:57:14 -070049linux_dynamic_gcclibs := -lgcc_s -lgcc -lc -lgcc_s -lgcc
50linux_static_gcclibs := -Wl,--start-group -lgcc -lgcc_eh -lc -Wl,--end-group
51darwin_dynamic_gcclibs := -lc -lSystem
52darwin_static_gcclibs := NO_STATIC_HOST_BINARIES_ON_DARWIN
53windows_dynamic_gcclibs := \
Pirama Arumuga Nainar80ba3452018-08-08 10:29:00 -070054 -Wl,--start-group -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcr110 \
55 -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -lpsapi \
56 -Wl,--end-group
Dan Albertd1d68b12015-09-11 10:57:14 -070057windows_static_gcclibs := NO_STATIC_HOST_BINARIES_ON_WINDOWS
Dan Albert4f2afde2015-03-03 17:42:28 -080058
Dan Albertb5eb9052015-03-03 18:30:27 -080059my_link_type := dynamic
60ifdef LOCAL_IS_HOST_MODULE
61 ifneq (,$(BUILD_HOST_static))
62 my_link_type := static
63 endif
64 ifeq (-static,$(filter -static,$(my_ldflags)))
65 my_link_type := static
66 endif
67else
68 ifeq (true,$(LOCAL_FORCE_STATIC_EXECUTABLE))
69 my_link_type := static
70 endif
71endif
72
Dan Willemsenc9aa6fc2016-09-13 10:44:44 -070073my_cxx_ldlibs :=
Ying Wang75e8fcb2014-10-07 13:03:29 -070074ifneq ($(filter $(my_cxx_stl),libc++ libc++_static),)
75 my_cflags += -D_USING_LIBCXX
Dan Albert0ad5bd22015-05-06 10:08:11 -070076
Dan Albert9262b6f2018-01-11 13:24:32 -080077 ifeq ($($(my_prefix)OS),darwin)
78 # libc++'s headers are annotated with availability macros that indicate
79 # which version of Mac OS was the first to ship with a libc++ feature
80 # available in its *system's* libc++.dylib. We do not use the system's
81 # library, but rather ship our own. As such, these availability
82 # attributes are meaningless for us but cause build breaks when we try
83 # to use code that would not be available in the system's dylib.
84 my_cppflags += -D_LIBCPP_DISABLE_AVAILABILITY
85 endif
86
Dan Albert2a4a0232015-05-12 11:00:31 -070087 # Note that the structure of this means that LOCAL_CXX_STL := libc++ will
88 # use the static libc++ for static executables.
Dan Albert0ad5bd22015-05-06 10:08:11 -070089 ifeq ($(my_link_type),dynamic)
Dan Albert2a4a0232015-05-12 11:00:31 -070090 ifeq ($(my_cxx_stl),libc++)
91 my_shared_libraries += libc++
92 else
93 my_static_libraries += libc++_static
94 endif
Ying Wang75e8fcb2014-10-07 13:03:29 -070095 else
96 my_static_libraries += libc++_static
97 endif
98
99 ifdef LOCAL_IS_HOST_MODULE
100 my_cppflags += -nostdinc++
101 my_ldflags += -nodefaultlibs
Dan Willemsenc9aa6fc2016-09-13 10:44:44 -0700102 my_cxx_ldlibs += $($($(my_prefix)OS)_$(my_link_type)_gcclibs)
Pirama Arumuga Nainar80ba3452018-08-08 10:29:00 -0700103
104 ifeq ($($(my_prefix)OS),windows)
105 # Use SjLj exceptions for 32-bit. libgcc_eh implements SjLj
106 # exception model for 32-bit.
107 ifeq (x86,$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
108 my_cppflags += -fsjlj-exceptions
109 endif
110 # Disable visibility annotations since we're using libc++ static
111 # library.
112 my_cppflags += -D_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS
113 my_cppflags += -D_LIBCXXABI_DISABLE_VISIBILITY_ANNOTATIONS
114 # Use Win32 threads in libc++.
115 my_cppflags += -D_LIBCPP_HAS_THREAD_API_WIN32
116 endif
Dan Albert50367292015-03-31 15:18:17 -0700117 else
118 ifeq (arm,$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
119 my_static_libraries += libunwind_llvm
Dan Albert686a5572015-06-23 13:32:30 -0700120 my_ldflags += -Wl,--exclude-libs,libunwind_llvm.a
Dan Albert50367292015-03-31 15:18:17 -0700121 endif
122
123 ifeq ($(my_link_type),static)
Dan Albert0ad5bd22015-05-06 10:08:11 -0700124 my_static_libraries += libm libc libdl
Dan Albert50367292015-03-31 15:18:17 -0700125 endif
Ying Wang75e8fcb2014-10-07 13:03:29 -0700126 endif
Ying Wang75e8fcb2014-10-07 13:03:29 -0700127else ifeq ($(my_cxx_stl),ndk)
Dan Albert3a360a72015-05-06 10:08:32 -0700128 # Using an NDK STL. Handled in binary.mk.
Dan Albert93e8cf72014-10-16 21:18:15 -0700129else ifeq ($(my_cxx_stl),libstdc++)
Pirama Arumuga Nainar80ba3452018-08-08 10:29:00 -0700130 $(error $(LOCAL_PATH): $(LOCAL_MODULE): libstdc++ is not supported)
Ying Wang75e8fcb2014-10-07 13:03:29 -0700131else ifeq ($(my_cxx_stl),none)
132 ifdef LOCAL_IS_HOST_MODULE
133 my_cppflags += -nostdinc++
Dan Albert8bf4cc92015-03-03 14:10:27 -0800134 my_ldflags += -nodefaultlibs
Dan Willemsenc9aa6fc2016-09-13 10:44:44 -0700135 my_cxx_ldlibs += $($($(my_prefix)OS)_$(my_link_type)_gcclibs)
Ying Wang75e8fcb2014-10-07 13:03:29 -0700136 endif
137else
Dan Albert3a360a72015-05-06 10:08:32 -0700138 $(error $(LOCAL_PATH): $(LOCAL_MODULE): $(my_cxx_stl) is not a supported STL.)
Ying Wang75e8fcb2014-10-07 13:03:29 -0700139endif