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

Unified Diff: run.py

Issue 10832040: Support 64-bit reserved_at_zero value nacl-side (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: inline template digits Created 8 years, 5 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 | « SConstruct ('k') | src/trusted/nonnacl_util/sel_ldr_launcher_standalone.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: run.py
diff --git a/run.py b/run.py
index 304ee6118de92318c012e5e634314d0348fa855e..78ca9be1b6e283f6e0637ba32ee9025db2aa1a37 100755
--- a/run.py
+++ b/run.py
@@ -225,8 +225,9 @@ def RunSelLdr(args):
bootstrap = os.path.join(os.path.dirname(env.sel_ldr),
'nacl_helper_bootstrap')
loader = [bootstrap, env.sel_ldr]
- args = ['--r_debug=0xXXXXXXXXXXXXXXXX',
- '--reserved_at_zero=0xXXXXXXXX'] + args
+ template_digits = 'X' * 16
+ args = ['--r_debug=0x' + template_digits,
+ '--reserved_at_zero=0x' + template_digits] + args
else:
loader = [env.sel_ldr]
Run(prefix + loader + args)
« no previous file with comments | « SConstruct ('k') | src/trusted/nonnacl_util/sel_ldr_launcher_standalone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698