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

Unified Diff: pydir/szbuild.py

Issue 581293003: Adjust paths for host_x86_32/bin -> bin and for switch to 64-bit. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 3 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 | « pydir/crosstest.py ('k') | 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 8368e621763c527409fa84185aaba399622b7b32..ab67f027f7f024b205f02c2dabef032f0cad5f70 100755
--- a/pydir/szbuild.py
+++ b/pydir/szbuild.py
@@ -125,7 +125,7 @@ def main():
be run. These extra paths are within the native_client tree.
When changes are made to these tools, copy them this way:
cd native_client
- toolchain_build/toolchain_build_pnacl.py llvm_i686_linux \\
+ toolchain_build/toolchain_build_pnacl.py llvm_x86_64_linux \\
--install=toolchain/linux_x86/pnacl_newlib
"""
argparser = argparse.ArgumentParser(
@@ -149,7 +149,6 @@ def ProcessPexe(args, pexe, exe):
nacl_root = FindBaseNaCl()
os.environ['PATH'] = (
'{root}/toolchain/linux_x86/pnacl_newlib/bin{sep}' +
- '{root}/toolchain/linux_x86/pnacl_newlib/host_x86_32/bin{sep}' +
'{path}'
).format(root=nacl_root, sep=os.pathsep, path=os.environ['PATH'])
obj_llc = pexe_base + '.llc.o'
@@ -167,7 +166,7 @@ def ProcessPexe(args, pexe, exe):
'{root}/toolchain_build/src/subzero/llvm2ice'
).format(root=nacl_root)
llcbin = (
- '{root}/toolchain/linux_x86/pnacl_newlib/host_x86_32/bin/llc'
+ '{root}/toolchain/linux_x86/pnacl_newlib/bin/llc'
).format(root=nacl_root)
opt_level = args.optlevel
« no previous file with comments | « pydir/crosstest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698