aboutsummaryrefslogtreecommitdiffstats
path: root/cc
diff options
context:
space:
mode:
authorYi Kong <yikong@google.com>2018-06-15 15:46:11 -0700
committerYi Kong <yikong@google.com>2018-06-15 23:15:54 +0000
commit9c6336311952c0a9516c0d7ed8608e433fe92434 (patch)
tree4f5d40062905e13f744e570c4a732b278f81fd6c /cc
parent8eb8704cf19a22aeededa84463593925189cc22d (diff)
downloadbuild_soong-9c6336311952c0a9516c0d7ed8608e433fe92434.tar.gz
build_soong-9c6336311952c0a9516c0d7ed8608e433fe92434.tar.bz2
build_soong-9c6336311952c0a9516c0d7ed8608e433fe92434.zip
Remove workaround for cortex-a55/a75
Test: m checkbuild Test: boot on a55/a75 device, pass bionic tests Bug: 110235326 Change-Id: I5ab2102352a6efe1173b3097875e6e779d4a1a09
Diffstat (limited to 'cc')
-rw-r--r--cc/config/arm64_device.go9
-rw-r--r--cc/config/arm_device.go4
2 files changed, 5 insertions, 8 deletions
diff --git a/cc/config/arm64_device.go b/cc/config/arm64_device.go
index 73cee5cc..172784a7 100644
--- a/cc/config/arm64_device.go
+++ b/cc/config/arm64_device.go
@@ -53,15 +53,12 @@ var (
"-mcpu=cortex-a53",
},
"cortex-a55": []string{
- // The cortex-a55 target is not yet supported,
- // so use cortex-a53.
- "-mcpu=cortex-a53",
+ "-mcpu=cortex-a55",
},
"cortex-a75": []string{
- // Use the cortex-a53 since it is similar to the little
+ // Use the cortex-a55 since it is similar to the little
// core (cortex-a55) and is sensitive to ordering.
- // The cortex-a55 target is not yet supported.
- "-mcpu=cortex-a53",
+ "-mcpu=cortex-a55",
},
"kryo": []string{
// Use the cortex-a57 cpu since some compilers
diff --git a/cc/config/arm_device.go b/cc/config/arm_device.go
index 398df90d..4719fb71 100644
--- a/cc/config/arm_device.go
+++ b/cc/config/arm_device.go
@@ -100,7 +100,7 @@ var (
"-D__ARM_FEATURE_LPAE=1",
},
"cortex-a55": []string{
- "-mcpu=cortex-a53",
+ "-mcpu=cortex-a55",
"-mfpu=neon-fp-armv8",
// Fake an ARM compiler flag as these processors support LPAE which GCC/clang
// don't advertise.
@@ -109,7 +109,7 @@ var (
"-D__ARM_FEATURE_LPAE=1",
},
"cortex-a75": []string{
- "-mcpu=cortex-a53",
+ "-mcpu=cortex-a55",
"-mfpu=neon-fp-armv8",
// Fake an ARM compiler flag as these processors support LPAE which GCC/clang
// don't advertise.