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

Unified Diff: pydir/szbuild.py

Issue 1410813004: Subzero: Add a missing absolute path to llvm-mc command. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 2 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: pydir/szbuild.py
diff --git a/pydir/szbuild.py b/pydir/szbuild.py
index f158fa88289ca76a5941ba12ad84b66dbacc865b..684403822c429abe78a3a3a047400176af08513a 100755
--- a/pydir/szbuild.py
+++ b/pydir/szbuild.py
@@ -239,8 +239,9 @@ def ProcessPexe(args, pexe, exe):
}[args.target]
shellcmd((
- 'llvm-mc -triple={triple} -filetype=obj -o {obj} {asm}'
- ).format(asm=asm_sz, obj=obj_sz, triple=triple),
+ '{base}/llvm-mc -triple={triple} -filetype=obj -o {obj} {asm}'
+ ).format(base=path_addition, asm=asm_sz, obj=obj_sz,
+ triple=triple),
echo=args.verbose)
if not args.sandbox:
shellcmd((
« 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