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

Unified Diff: pydir/crosstest.py

Issue 944333002: Subzero: Update tests and build scripts for sandboxing. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Remove old assignment of llcbin and gold Created 5 years, 10 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
Index: pydir/crosstest.py
diff --git a/pydir/crosstest.py b/pydir/crosstest.py
index 2faff705f07bb964ed8b48e3f2e967c6ddee6524..9b8327322a2b049ce854cb4f9463e7367b2fd743 100755
--- a/pydir/crosstest.py
+++ b/pydir/crosstest.py
@@ -144,12 +144,9 @@ if __name__ == '__main__':
else:
objs.append(bitcode)
- # Use 'clang szrt.c' -or- 'clang++ szrt.cpp'
objs.append((
- '{root}/toolchain_build/src/subzero/runtime/szrt.{ext}'
- ).format(root=nacl_root, ext='c' if pure_c else 'cpp'))
- objs.append((
- '{root}/toolchain_build/src/subzero/runtime/szrt_i686.ll'
+ '{root}/toolchain_build/src/subzero/build/runtime/' +
+ 'szrt_native_x8632.o'
).format(root=nacl_root))
linker = 'clang' if pure_c else 'clang++'
shellcmd([linker, '-g', '-m32', args.driver] +

Powered by Google App Engine
This is Rietveld 408576698