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

Unified Diff: pydir/szbuild_spec2k.py

Issue 1407063002: Subzero. Misc ARM32 bugfixes. (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
Index: pydir/szbuild_spec2k.py
diff --git a/pydir/szbuild_spec2k.py b/pydir/szbuild_spec2k.py
index fcf924495a927bbc378ba629217d26ba45b16401..22f14aea6e2fd7650ab50e593c761efa16942ae9 100755
--- a/pydir/szbuild_spec2k.py
+++ b/pydir/szbuild_spec2k.py
@@ -33,7 +33,10 @@ def main():
print 'Unknown component{s}: '.format(s='s' if len(bad) > 1 else '') + \
' '.join(x for x in bad)
sys.exit(1)
- suffix = 'pnacl.opt.x8632' if args.sandbox else 'gcc.opt.x8632'
+ suffix = (
+ 'pnacl.opt.{target}' if args.sandbox else 'gcc.opt.{target}').format(
+ target=args.target);
+ # suffix = 'pnacl.opt.arm32' if args.sandbox else 'gcc.opt.arm32'
Jim Stichnoth 2015/10/15 23:34:21 Delete this comment?
John 2015/11/05 20:25:13 Done.
for comp in args.comps:
name = os.path.splitext(comp)[1] or comp
if name[0] == '.':

Powered by Google App Engine
This is Rietveld 408576698