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

Unified Diff: build/scripts/slave/compile.py

Issue 7471028: Set CC.host and CXX.host to clang as well on the clang bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 9 years, 5 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/scripts/slave/compile.py
===================================================================
--- build/scripts/slave/compile.py (revision 93309)
+++ build/scripts/slave/compile.py (working copy)
@@ -241,8 +241,8 @@
clang_dir = os.path.abspath(os.path.join(
slave_utils.SlaveBaseDir(options.build_dir), 'build', 'src',
'third_party', 'llvm-build', 'Release+Asserts', 'bin'))
- env['CC'] = os.path.join(clang_dir, 'clang')
- env['CXX'] = os.path.join(clang_dir, 'clang++')
+ env['CC.host'] = env['CC'] = os.path.join(clang_dir, 'clang')
+ env['CXX.host'] = env['CXX'] = os.path.join(clang_dir, 'clang++')
# We intentionally don't reuse the ccache/distcc modifications,
# as they don't work with clang.
« 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