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

Unified Diff: SConstruct

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: 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 | « no previous file | run.py » ('j') | run.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: SConstruct
diff --git a/SConstruct b/SConstruct
index d3963ce698373edaa24c807f20fc192497be06fa..a9a77b338b152708a525dca2db62c70716d25b82 100755
--- a/SConstruct
+++ b/SConstruct
@@ -1183,8 +1183,10 @@ def GetBootstrap(env):
if 'TRUSTED_ENV' in env:
trusted_env = env['TRUSTED_ENV']
if trusted_env.Bit('linux'):
+ template_digits = 'X'*16
Mark Seaborn 2012/07/30 18:51:12 Nit: spaces around '*', please
Austin Benson 2012/07/31 23:24:12 Done.
return (trusted_env.File('${STAGING_DIR}/nacl_helper_bootstrap'),
- ['--r_debug=0xXXXXXXXXXXXXXXXX', '--reserved_at_zero=0xXXXXXXXX'])
+ ['--r_debug=0x' + template_digits,
+ '--reserved_at_zero=0x' + template_digits])
return None, None
pre_base_env.AddMethod(GetBootstrap)
« no previous file with comments | « no previous file | run.py » ('j') | run.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698