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

Unified Diff: build/config/compiler/BUILD.gn

Issue 2766333002: Use llvm-ar when building with Clang. (Closed)
Patch Set: Move a comment Created 3 years, 9 months 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 | « no previous file | build/config/posix/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/compiler/BUILD.gn
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
index 916d78a120b4e470fdebafc087f7292898ff9824..6a445bda32fe856b741ef288fe6abdbb680a2bb4 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -168,11 +168,6 @@ config("compiler") {
configs += [ "//build/config/mac:compiler" ]
}
- # Applies to all Posix systems.
- if (is_posix) {
- configs += [ "//build/config/posix:compiler" ]
- }
-
# See the definitions below.
configs += [
":compiler_cpu_abi",
@@ -309,7 +304,8 @@ config("compiler") {
ldflags += [ "-fPIC" ]
}
- cflags += [ "-pipe" ] # Use pipes for communicating between sub-processes. Faster.
+ # Use pipes for communicating between sub-processes. Faster.
+ cflags += [ "-pipe" ]
ldflags += [
"-Wl,-z,noexecstack",
« no previous file with comments | « no previous file | build/config/posix/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698