diff options
author | 2020-02-12 10:52:22 +0000 | |
---|---|---|
committer | 2020-02-20 07:15:30 +0000 | |
commit | be0d3cff84c69c497487d39c4022d604a7907d5b (patch) | |
tree | 15364a8eb252f9645bb1cf3f9fe9d2017f1ed5fa /build/art.go | |
parent | 5945de03b6f6b35bcf6a575b2291e29ae7a2b1ee (diff) |
Remove remaining MIPS support.
With the exception of dwarf support in libelffile.
Test: aosp_taimen-userdebug boots.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Bug: 147346243
Change-Id: Ib25acbc98aa7f63ce49a7ed2f81a4a64d48eac39
Diffstat (limited to 'build/art.go')
-rw-r--r-- | build/art.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/build/art.go b/build/art.go index 353a682380..f3b29bb3dc 100644 --- a/build/art.go +++ b/build/art.go @@ -26,7 +26,7 @@ import ( "android/soong/cc" ) -var supportedArches = []string{"arm", "arm64", "mips", "mips64", "x86", "x86_64"} +var supportedArches = []string{"arm", "arm64", "x86", "x86_64"} func globalFlags(ctx android.LoadHookContext) ([]string, []string) { var cflags []string @@ -88,16 +88,12 @@ func globalFlags(ctx android.LoadHookContext) ([]string, []string) { cflags = append(cflags, "-DART_STACK_OVERFLOW_GAP_arm=8192", "-DART_STACK_OVERFLOW_GAP_arm64=16384", - "-DART_STACK_OVERFLOW_GAP_mips=16384", - "-DART_STACK_OVERFLOW_GAP_mips64=16384", "-DART_STACK_OVERFLOW_GAP_x86=16384", "-DART_STACK_OVERFLOW_GAP_x86_64=20480") } else { cflags = append(cflags, "-DART_STACK_OVERFLOW_GAP_arm=8192", "-DART_STACK_OVERFLOW_GAP_arm64=8192", - "-DART_STACK_OVERFLOW_GAP_mips=16384", - "-DART_STACK_OVERFLOW_GAP_mips64=16384", "-DART_STACK_OVERFLOW_GAP_x86=8192", "-DART_STACK_OVERFLOW_GAP_x86_64=8192") } |