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

Commit 6685ebed authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by Android (Google) Code Review
Browse files

Merge "Change USE_CLANG_PLATFORM_BUILD default to true."

parents 57d871e3 b5da9d94
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -217,11 +217,13 @@ ifdef LOCAL_IS_HOST_MODULE
        my_clang := true
    endif
    endif
# Add option to make clang the default for device build
else ifeq ($(USE_CLANG_PLATFORM_BUILD),true)
# Add option to make gcc the default for device build
else ifeq ($(USE_CLANG_PLATFORM_BUILD),false)
    ifeq ($(my_clang),)
        my_clang := true
        my_clang := false
    endif
else ifeq ($(my_clang),)
    my_clang := true
endif

my_cpp_std_version := -std=gnu++14