Remove denver64 from soong am: f46b1cb06e

am: 238f6c330d

Change-Id: I640a9e965b47ae5269818a2076ca1389e0a748ff
This commit is contained in:
Haibo Huang
2018-12-04 16:44:14 -08:00
committed by android-build-merger
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"
}