summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-06 23:51:07 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-06 23:51:07 +0000
commit60550c8109b8b14a2d37fbd3fcda41a77f006f44 (patch)
tree8f9d1bc2d11a7fabf8ea44e5840f3d16a060189e /build
parent04f22c0df2b89d4f1365c72134acce2af5f8a68f (diff)
downloadchromium_src-60550c8109b8b14a2d37fbd3fcda41a77f006f44.zip
chromium_src-60550c8109b8b14a2d37fbd3fcda41a77f006f44.tar.gz
chromium_src-60550c8109b8b14a2d37fbd3fcda41a77f006f44.tar.bz2
clang/make: Set LINK to $(CXX).
Fixes clients that set CXX to a custom clang, such as ASAN. BUG=none TEST=asan bot goes green again. Review URL: http://codereview.chromium.org/7838013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99868 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/common.gypi2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi
index 5e1171a..0a8d7ba 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)'],
['CC.host', '$(CC)'],
['CXX.host', '$(CXX)'],
['LINK.host', '$(LINK)'],