Remove GCC support from Make

We need to keep support in Soong until toolchain_library no longer uses
GCC.

Test: out/build-aosp_arm64.ninja is the same before/after
Test: build_test on downstream branches
Change-Id: Ib78bcd6d5544afc3a3164f65fa72a3f08b2acf29
This commit is contained in:
Dan Willemsen
2018-09-04 22:25:59 -07:00
parent 3dceee3241
commit f640dbcd1f
4 changed files with 41 additions and 92 deletions

View File

@@ -1089,10 +1089,6 @@ func (c *Module) clang(ctx BaseModuleContext) bool {
ctx.PropertyErrorf("clang", "false (GCC) is no longer supported")
}
if !c.toolchain(ctx).ClangSupported() {
panic("GCC is no longer supported")
}
return !c.Properties.Gcc
}