Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f46b1cb0 authored by Haibo Huang's avatar Haibo Huang
Browse files

Remove denver64 from soong

Test: build
Bug: 73545680
Change-Id: I6b213a1d83275c566fd6142a07550094240528c4
parent ce16f3ba
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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"}},
+2 −6
Original line number Diff line number Diff line
@@ -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"
	}