aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2016-03-01 14:54:24 -0800
committerDan Willemsen <dwillemsen@google.com>2016-03-01 17:22:37 -0800
commit0084d78abf4ea47c1692180c70820dfc6f3fc219 (patch)
tree79c72d69c73948d330a7e8b8d0d5e4837dc79e68
parent2808e09417d88f979c2f497ea85149e970e1903d (diff)
downloadbuild_soong-0084d78abf4ea47c1692180c70820dfc6f3fc219.tar.gz
build_soong-0084d78abf4ea47c1692180c70820dfc6f3fc219.tar.bz2
build_soong-0084d78abf4ea47c1692180c70820dfc6f3fc219.zip
DeviceUsesClang should default to true
It defaults to true in Make now. Change-Id: Id216c35d4a4fc87ce19067a357561a7fc814cbbb
-rw-r--r--common/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/config.go b/common/config.go
index 6fd6dfce..ef59cf72 100644
--- a/common/config.go
+++ b/common/config.go
@@ -261,7 +261,7 @@ func (c *config) DeviceUsesClang() bool {
if c.ProductVariables.DeviceUsesClang != nil {
return *c.ProductVariables.DeviceUsesClang
}
- return false
+ return true
}
func (c *config) ResourceOverlays() []SourcePath {