aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2016-12-14 11:13:16 -0800
committerColin Cross <ccross@android.com>2016-12-14 11:13:16 -0800
commit14e8dd73d03aa6aa6a7e391e6e6ff8db66b52436 (patch)
treefedfdde9ac5d76a4aa84290e571e71c9defa28f7
parent5950f3827c37b073377c84fa407982bc2f47856c (diff)
downloadbuild_soong-14e8dd73d03aa6aa6a7e391e6e6ff8db66b52436.tar.gz
build_soong-14e8dd73d03aa6aa6a7e391e6e6ff8db66b52436.tar.bz2
build_soong-14e8dd73d03aa6aa6a7e391e6e6ff8db66b52436.zip
Move frameworks/native/opengl/include from -isystem to -I
-isystem hides all warnings. The warnings in frameworks/native/opengl/include have been fixed, move it from -isystem to -I. Test: m -j native Bug: 31751828 Change-Id: If182ab5664e22f0cfd5be8cb1d0309d07dc85ceb
-rw-r--r--cc/config/global.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/config/global.go b/cc/config/global.go
index 71c0da41..c8b803b8 100644
--- a/cc/config/global.go
+++ b/cc/config/global.go
@@ -108,10 +108,10 @@ func init() {
"hardware/ril/include",
"libnativehelper/include",
"frameworks/native/include",
+ "frameworks/native/opengl/include",
})
pctx.PrefixedPathsForOptionalSourceVariable("CommonGlobalSystemIncludes", "-isystem ",
[]string{
- "frameworks/native/opengl/include",
"frameworks/av/include",
"frameworks/base/include",
})