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

Unified Diff: build/common.gypi

Issue 7838013: clang/make: Set LINK to $(CXX). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 5e1171a7963cdc0de389a3c1993801788c3b3e13..0a8d7ba9cb72ad0a742ffbc23ad824bc54f6630d 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -2016,7 +2016,7 @@
'make_global_settings': [
['CC', 'third_party/llvm-build/Release+Asserts/bin/clang'],
['CXX', 'third_party/llvm-build/Release+Asserts/bin/clang++'],
- ['LINK', 'third_party/llvm-build/Release+Asserts/bin/clang++'],
+ ['LINK', '$(CXX)'],
Nico 2011/09/06 23:37:59 Setting this at all is required to set LINK.host t
['CC.host', '$(CC)'],
['CXX.host', '$(CXX)'],
['LINK.host', '$(LINK)'],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698