Index: build/config/android/BUILD.gn |
diff --git a/build/config/android/BUILD.gn b/build/config/android/BUILD.gn |
index 62c6d0c16c0734424db2a6e0f6b610bb39544a7f..59cc06ffdbe114b54e0bc75931d8cf5978101e69 100644 |
--- a/build/config/android/BUILD.gn |
+++ b/build/config/android/BUILD.gn |
@@ -104,14 +104,8 @@ config("compiler") { |
} else { |
assert(false, "Architecture not supported") |
} |
- cflags += [ |
- "-target", |
- abi_target, |
- ] |
- ldflags += [ |
- "-target", |
- abi_target, |
- ] |
+ cflags += [ "--target=$abi_target" ] |
+ ldflags += [ "--target=$abi_target" ] |
} |
# Assign any flags set for the C compiler to asmflags so that they are sent |