| Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 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 |  | 
| 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. | 
|  | 11 | ifndef USE_MINGW | 
| Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 12 | my_cxx_stl := libc++ | 
| Dan Albert | 8bf4cc9 | 2015-03-03 14:10:27 -0800 | [diff] [blame] | 13 | ifdef LOCAL_IS_HOST_MODULE | 
|  | 14 | ifneq (,$(BUILD_HOST_static)) | 
|  | 15 | my_cxx_stl := libc++_static | 
|  | 16 | endif | 
|  | 17 | endif | 
| Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 18 | else | 
| Dan Albert | 93766b2 | 2014-10-16 19:07:41 -0700 | [diff] [blame] | 19 | # libc++ is not supported on mingw. | 
| Dan Albert | 93e8cf7 | 2014-10-16 21:18:15 -0700 | [diff] [blame] | 20 | my_cxx_stl := libstdc++ | 
| Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 21 | endif | 
|  | 22 | else | 
|  | 23 | my_cxx_stl := ndk | 
|  | 24 | endif | 
|  | 25 | else | 
|  | 26 | my_cxx_stl := $(strip $(LOCAL_CXX_STL)) | 
|  | 27 | endif | 
|  | 28 |  | 
| Dan Albert | 4f2afde | 2015-03-03 17:42:28 -0800 | [diff] [blame] | 29 | # Yes, this is actually what the clang driver does. | 
| Dan Albert | d666bb1 | 2015-03-03 21:47:04 -0800 | [diff] [blame] | 30 | HOST_linux_dynamic_gcclibs := -lgcc_s -lgcc -lc -lgcc_s -lgcc | 
|  | 31 | HOST_linux_static_gcclibs := -Wl,--start-group -lgcc -lgcc_eh -lc -Wl,--end-group | 
|  | 32 | HOST_darwin_dynamic_gcclibs := -lc -lSystem | 
|  | 33 | HOST_darwin_static_gcclibs := NO_STATIC_HOST_BINARIES_ON_DARWIN | 
| Dan Albert | 4f2afde | 2015-03-03 17:42:28 -0800 | [diff] [blame] | 34 |  | 
| Dan Albert | b5eb905 | 2015-03-03 18:30:27 -0800 | [diff] [blame] | 35 | my_link_type := dynamic | 
|  | 36 | ifdef 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 | 
|  | 43 | else | 
|  | 44 | ifeq (true,$(LOCAL_FORCE_STATIC_EXECUTABLE)) | 
|  | 45 | my_link_type := static | 
|  | 46 | endif | 
|  | 47 | endif | 
|  | 48 |  | 
| Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 49 | ifneq ($(filter $(my_cxx_stl),libc++ libc++_static),) | 
|  | 50 | my_cflags += -D_USING_LIBCXX | 
|  | 51 | my_c_includes += external/libcxx/include | 
|  | 52 | ifeq ($(my_cxx_stl),libc++) | 
|  | 53 | my_shared_libraries += libc++ | 
|  | 54 | else | 
|  | 55 | my_static_libraries += libc++_static | 
| Dan Albert | 7955bf0 | 2015-03-19 13:05:13 -0700 | [diff] [blame] | 56 | ifndef LOCAL_IS_HOST_MODULE | 
|  | 57 | ifeq ($(LOCAL_FORCE_STATIC_EXECUTABLE),true) | 
|  | 58 | my_static_libraries += libm libc libdl | 
|  | 59 | endif | 
|  | 60 | endif | 
| Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 61 | endif | 
|  | 62 |  | 
|  | 63 | ifdef LOCAL_IS_HOST_MODULE | 
|  | 64 | my_cppflags += -nostdinc++ | 
|  | 65 | my_ldflags += -nodefaultlibs | 
| Dan Albert | 8bf4cc9 | 2015-03-03 14:10:27 -0800 | [diff] [blame] | 66 | my_ldlibs += -lpthread -lm | 
| Dan Albert | d666bb1 | 2015-03-03 21:47:04 -0800 | [diff] [blame] | 67 | my_ldlibs += $($(my_prefix)$(HOST_OS)_$(my_link_type)_gcclibs) | 
| Dan Albert | 5036729 | 2015-03-31 15:18:17 -0700 | [diff] [blame] | 68 | else | 
|  | 69 | ifeq (arm,$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) | 
|  | 70 | my_static_libraries += libunwind_llvm | 
| Dan Albert | 5036729 | 2015-03-31 15:18:17 -0700 | [diff] [blame] | 71 | endif | 
|  | 72 |  | 
|  | 73 | ifeq ($(my_link_type),static) | 
|  | 74 | my_static_libraries += libdl | 
|  | 75 | else | 
|  | 76 | my_shared_libraries += libdl | 
|  | 77 | endif | 
| Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 78 | endif | 
| Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 79 | else ifeq ($(my_cxx_stl),ndk) | 
| Dan Albert | 0a4122a | 2015-05-06 10:08:32 -0700 | [diff] [blame^] | 80 | # Using an NDK STL. Handled in binary.mk. | 
| Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 81 | ifndef LOCAL_IS_HOST_MODULE | 
|  | 82 | my_system_shared_libraries += libstdc++ | 
|  | 83 | endif | 
| Dan Albert | 93e8cf7 | 2014-10-16 21:18:15 -0700 | [diff] [blame] | 84 | else ifeq ($(my_cxx_stl),libstdc++) | 
| Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 85 | # Using bionic's basic libstdc++. Not actually an STL. Only around until the | 
|  | 86 | # tree is in good enough shape to not need it. | 
|  | 87 | ifndef LOCAL_IS_HOST_MODULE | 
|  | 88 | my_c_includes += bionic/libstdc++/include | 
|  | 89 | my_system_shared_libraries += libstdc++ | 
|  | 90 | endif | 
|  | 91 | # Host builds will use GNU libstdc++. | 
|  | 92 | else ifeq ($(my_cxx_stl),none) | 
|  | 93 | ifdef LOCAL_IS_HOST_MODULE | 
|  | 94 | my_cppflags += -nostdinc++ | 
| Dan Albert | 8bf4cc9 | 2015-03-03 14:10:27 -0800 | [diff] [blame] | 95 | my_ldflags += -nodefaultlibs | 
| Dan Albert | d666bb1 | 2015-03-03 21:47:04 -0800 | [diff] [blame] | 96 | my_ldlibs += $($(my_prefix)$(HOST_OS)_$(my_link_type)_gcclibs) | 
| Ying Wang | 75e8fcb | 2014-10-07 13:03:29 -0700 | [diff] [blame] | 97 | endif | 
|  | 98 | else | 
| Dan Albert | 0a4122a | 2015-05-06 10:08:32 -0700 | [diff] [blame^] | 99 | $(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] | 100 | endif |