diff options
author | 2020-02-12 10:52:22 +0000 | |
---|---|---|
committer | 2020-02-14 12:01:58 +0000 | |
commit | 41b605c5ad4b06ea127ac56c6e3a4c92e8913efd (patch) | |
tree | f7b28eb11051f3faada99c11dc594cccd34a5786 /build/art.go | |
parent | 30b38f8d01cdb4c80092638f23c61d73e0d287f4 (diff) |
Remove MIPS support from runtime/.
Test: aosp_taimen-userdebug boots.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Bug: 147346243
Change-Id: If1fc8be94caa69f734438d7a1f4c715addfd8876
Diffstat (limited to 'build/art.go')
-rw-r--r-- | build/art.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/build/art.go b/build/art.go index e354f61d3a..353a682380 100644 --- a/build/art.go +++ b/build/art.go @@ -108,11 +108,6 @@ func globalFlags(ctx android.LoadHookContext) ([]string, []string) { asflags = append(asflags, "-DART_ENABLE_ADDRESS_SANITIZER=1") } - if ctx.Config().IsEnvTrue("ART_MIPS32_CHECK_ALIGNMENT") { - // Enable the use of MIPS32 CHECK_ALIGNMENT macro for debugging purposes - asflags = append(asflags, "-DART_MIPS32_CHECK_ALIGNMENT") - } - if !ctx.Config().IsEnvFalse("USE_D8_DESUGAR") { cflags = append(cflags, "-DUSE_D8_DESUGAR=1") } |