Commit 955bfdc7 by Jim Stichnoth

Subzero: Add a missing absolute path to llvm-mc command.

Somehow missed this in https://codereview.chromium.org/1419173006 . BUG= none R=kschimpf@google.com Review URL: https://codereview.chromium.org/1410813004 .
parent 697dc796
......@@ -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((
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment