cxx_stl_setup.mk revision 2a4a023a541d16b2a8c66aed97748d0f0f376387
1#############################################################
2## Set up flags based on LOCAL_CXX_STL.
3## Input variables: LOCAL_CXX_STL
4## Output variables: My_cflags, my_c_includes, my_shared_libraries, etc.
5#############################################################
6
7# Select the appropriate C++ STL
8ifeq ($(strip $(LOCAL_CXX_STL)),default)
9    ifndef LOCAL_SDK_VERSION
10        # Platform code. Select the appropriate STL.
11        my_cxx_stl := libc++
12        ifdef LOCAL_IS_HOST_MODULE
13            ifneq (,$(BUILD_HOST_static))
14                my_cxx_stl := libc++_static
15            endif
16
17            ifdef USE_MINGW
18                # libc++ is not supported on mingw.
19                my_cxx_stl := libstdc++
20            endif
21        endif
22    else
23        my_cxx_stl := ndk
24    endif
25else
26    my_cxx_stl := $(strip $(LOCAL_CXX_STL))
27endif
28
29# Yes, this is actually what the clang driver does.
30HOST_linux_dynamic_gcclibs := -lgcc_s -lgcc -lc -lgcc_s -lgcc
31HOST_linux_static_gcclibs := -Wl,--start-group -lgcc -lgcc_eh -lc -Wl,--end-group
32HOST_darwin_dynamic_gcclibs := -lc -lSystem
33HOST_darwin_static_gcclibs := NO_STATIC_HOST_BINARIES_ON_DARWIN
34
35my_link_type := dynamic
36ifdef LOCAL_IS_HOST_MODULE
37    ifneq (,$(BUILD_HOST_static))
38        my_link_type := static
39    endif
40    ifeq (-static,$(filter -static,$(my_ldflags)))
41        my_link_type := static
42    endif
43else
44    ifeq (true,$(LOCAL_FORCE_STATIC_EXECUTABLE))
45        my_link_type := static
46    endif
47endif
48
49ifneq ($(filter $(my_cxx_stl),libc++ libc++_static),)
50    my_cflags += -D_USING_LIBCXX
51    my_c_includes += external/libcxx/include
52
53    # Note that the structure of this means that LOCAL_CXX_STL := libc++ will
54    # use the static libc++ for static executables.
55    ifeq ($(my_link_type),dynamic)
56        ifeq ($(my_cxx_stl),libc++)
57            my_shared_libraries += libc++
58        else
59            my_static_libraries += libc++_static
60        endif
61    else
62        my_static_libraries += libc++_static
63    endif
64
65    ifdef LOCAL_IS_HOST_MODULE
66        my_cppflags += -nostdinc++
67        my_ldflags += -nodefaultlibs
68        my_ldlibs += -lpthread -lm
69        my_ldlibs += $($(my_prefix)$(HOST_OS)_$(my_link_type)_gcclibs)
70    else
71        ifeq (arm,$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
72            my_static_libraries += libunwind_llvm
73        endif
74
75        ifeq ($(my_link_type),static)
76            my_static_libraries += libm libc libdl
77        else
78            my_shared_libraries += libdl
79        endif
80    endif
81else ifeq ($(my_cxx_stl),ndk)
82    # Using an NDK STL. Handled in binary.mk.
83    ifndef LOCAL_IS_HOST_MODULE
84        my_system_shared_libraries += libstdc++
85    endif
86else ifeq ($(my_cxx_stl),libstdc++)
87    # Using bionic's basic libstdc++. Not actually an STL. Only around until the
88    # tree is in good enough shape to not need it.
89    ifndef LOCAL_IS_HOST_MODULE
90        my_c_includes += bionic/libstdc++/include
91        my_system_shared_libraries += libstdc++
92    endif
93    # Host builds will use GNU libstdc++.
94else ifeq ($(my_cxx_stl),none)
95    ifdef LOCAL_IS_HOST_MODULE
96        my_cppflags += -nostdinc++
97        my_ldflags += -nodefaultlibs
98        my_ldlibs += $($(my_prefix)$(HOST_OS)_$(my_link_type)_gcclibs)
99    endif
100else
101    $(error $(LOCAL_PATH): $(LOCAL_MODULE): $(my_cxx_stl) is not a supported STL.)
102endif
103