Remove denver64 from soong

am: f46b1cb06e

Change-Id: I400a0bcabbb3ebd63136a28e6cf58314f4b499e8
This commit is contained in:
Haibo Huang 2018-12-04 16:35:13 -08:00 committed by android-build-merger
commit 238f6c330d
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"
}