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

Unified Diff: toolchain_build/command.py

Issue 978963002: Have CMake LLVM build share CFLAGS/CXXFLAGS with autoconf (e.g., libc++ flags). (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: xxx Created 5 years, 8 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 | toolchain_build/toolchain_build_pnacl.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: toolchain_build/command.py
diff --git a/toolchain_build/command.py b/toolchain_build/command.py
index c39f28f5c8adb2b3b05c522ce2422e3eae4118c4..bea6fd8d9c12b3c0253e348545bda289ba3f9236 100755
--- a/toolchain_build/command.py
+++ b/toolchain_build/command.py
@@ -196,7 +196,13 @@ def Command(command, stdout=None, run_cond=None, **kwargs):
path_dirs = [subst.Substitute(dirname) for dirname
in check_call_kwargs['path_dirs']]
del check_call_kwargs['path_dirs']
- check_call_kwargs['env'] = PlatformEnvironment(path_dirs)
+ # Perform substitution on any env overrides.
+ if 'env' in check_call_kwargs:
+ check_call_kwargs['env'] = { k: subst.Substitute(v)
+ for (k, v) in check_call_kwargs['env'].iteritems() }
+ check_call_kwargs['env'].update(PlatformEnvironment(path_dirs))
+ else:
+ check_call_kwargs['env'] = PlatformEnvironment(path_dirs)
if isinstance(command, str):
command = subst.Substitute(command)
« no previous file with comments | « no previous file | toolchain_build/toolchain_build_pnacl.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698