Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b5ccb461 authored by Dan Albert's avatar Dan Albert Committed by Gerrit Code Review
Browse files

Merge "Select the correct target STL with USE_MINGW."

parents 48240423 88a8ce69
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -8,17 +8,17 @@
ifeq ($(strip $(LOCAL_CXX_STL)),default)
    ifndef LOCAL_SDK_VERSION
        # Platform code. Select the appropriate STL.
        ifndef USE_MINGW
        my_cxx_stl := libc++
        ifdef LOCAL_IS_HOST_MODULE
            ifneq (,$(BUILD_HOST_static))
                my_cxx_stl := libc++_static
            endif
            endif
        else

            ifdef USE_MINGW
                # libc++ is not supported on mingw.
                my_cxx_stl := libstdc++
            endif
        endif
    else
        my_cxx_stl := ndk
    endif