diff options
author | 2020-02-12 10:52:22 +0000 | |
---|---|---|
committer | 2020-02-14 12:01:58 +0000 | |
commit | 41b605c5ad4b06ea127ac56c6e3a4c92e8913efd (patch) | |
tree | f7b28eb11051f3faada99c11dc594cccd34a5786 /build | |
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')
-rwxr-xr-x | build/apex/art_apex_test.py | 2 | ||||
-rw-r--r-- | build/art.go | 5 |
2 files changed, 0 insertions, 7 deletions
diff --git a/build/apex/art_apex_test.py b/build/apex/art_apex_test.py index 71c58838cf..186a99469f 100755 --- a/build/apex/art_apex_test.py +++ b/build/apex/art_apex_test.py @@ -890,8 +890,6 @@ class TestingTargetChecker: self._checker.check_art_test_executable('indirect_reference_table_test') self._checker.check_art_test_executable('instruction_set_features_arm64_test') self._checker.check_art_test_executable('instruction_set_features_arm_test') - self._checker.check_art_test_executable('instruction_set_features_mips64_test') - self._checker.check_art_test_executable('instruction_set_features_mips_test') self._checker.check_art_test_executable('instruction_set_features_test') self._checker.check_art_test_executable('instruction_set_features_x86_64_test') self._checker.check_art_test_executable('instruction_set_features_x86_test') 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") } |