Remove denver64 from soong

Test: build
Bug: 73545680
Change-Id: I6b213a1d83275c566fd6142a07550094240528c4
This commit is contained in:
Haibo Huang 2018-12-03 10:02:45 -08:00
parent ce16f3bac8
commit f46b1cb06e
2 changed files with 2 additions and 7 deletions

View File

@ -1089,7 +1089,6 @@ func getMegaDeviceConfig() []archConfig {
{"arm64", "armv8-a", "cortex-a53", []string{"arm64-v8a"}},
{"arm64", "armv8-a", "cortex-a72", []string{"arm64-v8a"}},
{"arm64", "armv8-a", "cortex-a73", []string{"arm64-v8a"}},
{"arm64", "armv8-a", "denver64", []string{"arm64-v8a"}},
{"arm64", "armv8-a", "kryo", []string{"arm64-v8a"}},
{"arm64", "armv8-a", "exynos-m1", []string{"arm64-v8a"}},
{"arm64", "armv8-a", "exynos-m2", []string{"arm64-v8a"}},

View File

@ -98,8 +98,7 @@ func init() {
"kryo",
"kryo385",
"exynos-m1",
"exynos-m2",
"denver64")
"exynos-m2")
pctx.StaticVariable("arm64GccVersion", arm64GccVersion)
@ -226,10 +225,7 @@ func arm64ToolchainFactory(arch android.Arch) Toolchain {
var extraLdflags string
switch arch.CpuVariant {
case "cortex-a53", "cortex-a72", "cortex-a73", "kryo", "exynos-m1", "exynos-m2",
// This variant might not need the workaround but leave it
// in the list since it has had the workaround on before.
"denver64":
case "cortex-a53", "cortex-a72", "cortex-a73", "kryo", "exynos-m1", "exynos-m2":
extraLdflags = "-Wl,--fix-cortex-a53-843419"
}