aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPirama Arumuga Nainar <pirama@google.com>2017-04-25 17:01:36 -0700
committerPirama Arumuga Nainar <pirama@google.com>2017-04-25 22:36:36 -0700
commit9af81332e1aa17b5e5978da200cbb4232f20b519 (patch)
tree34df98830a8d70a3c984ed307471dcafd9d00da0
parentc09614dd8c66c3e27112f32e5f7a6ef14b262559 (diff)
downloadwebp-9af81332e1aa17b5e5978da200cbb4232f20b519.tar.gz
Use -fno-integrated-as for Mips
Bug: http://b/37423073 https://android-review.googlesource.com/#/c/380424/ moves to using the integrated assembler for Mips and Mips64. Use -fno-integrated-as just for this module, and just for mips. Test: With the above build/soong CL cherry-picked the following succeed: aosp_mips checkbuild passes aosp_mips64 regular build, mma in external/webp (checkbuild is already broken) Change-Id: Ifcf8772a93fa56ebca4626d3bcc0ded7be424dec
-rw-r--r--src/Android.bp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Android.bp b/src/Android.bp
index 4e3b0668..025ccee3 100644
--- a/src/Android.bp
+++ b/src/Android.bp
@@ -88,6 +88,9 @@ cc_library_static {
arm: {
instruction_set: "arm",
},
+ mips: {
+ cflags: ["-fno-integrated-as",],
+ },
},
cflags: [
"-O2",