Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Unified Diff: third_party/boringssl/boringssl.gyp

Issue 1484883002: clang/arm: Push -no-integrated-as into the four targets that need it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/boringssl/BUILD.gn ('k') | third_party/libvpx_new/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/boringssl/boringssl.gyp
diff --git a/third_party/boringssl/boringssl.gyp b/third_party/boringssl/boringssl.gyp
index 19456fc69e268d76f751b4d28bf8a389e6b96489..80cc557dedd0e2a05a8985f3fac0f225f61dd2a9 100644
--- a/third_party/boringssl/boringssl.gyp
+++ b/third_party/boringssl/boringssl.gyp
@@ -36,6 +36,16 @@
}],
],
}],
+ ['target_arch == "arm" and clang == 1', {
+ # TODO(hans) Enable integrated-as (crbug.com/124610).
+ 'cflags': [ '-fno-integrated-as' ],
+ 'conditions': [
+ ['OS == "android"', {
+ # Else /usr/bin/as gets picked up.
+ 'cflags': [ '-B<(android_toolchain)' ],
+ }],
+ ],
+ }],
['target_arch == "arm64" and msan == 0', {
'conditions': [
['OS == "linux" or OS == "android"', {
« no previous file with comments | « third_party/boringssl/BUILD.gn ('k') | third_party/libvpx_new/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698