Revert "Change USE_CLANG_PLATFORM_BUILD default to true."

This reverts commit 3c8036da53.

Change-Id: I930bbebce8396d7c0abd847530640a696d3418e7
This commit is contained in:
Stephen Hines 2015-12-13 22:58:22 +00:00
parent 3c8036da53
commit 7a0c88ec3e

View file

@ -209,13 +209,11 @@ ifdef LOCAL_IS_HOST_MODULE
my_clang := true
endif
endif
# Add option to make gcc the default for device build
else ifeq ($(USE_CLANG_PLATFORM_BUILD),false)
# Add option to make clang the default for device build
else ifeq ($(USE_CLANG_PLATFORM_BUILD),true)
ifeq ($(my_clang),)
my_clang := false
my_clang := true
endif
else ifeq ($(my_clang),)
my_clang := true
endif
my_cpp_std_version := -std=gnu++14