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

Unified Diff: tools/toolchain_tester/toolchain_config.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: 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
Index: tools/toolchain_tester/toolchain_config.py
diff --git a/tools/toolchain_tester/toolchain_config.py b/tools/toolchain_tester/toolchain_config.py
index 182bed99ef29675543e511888455976393586fcc..309e4fa5f7f36efcab676e2b89e092d67d4627eb 100644
--- a/tools/toolchain_tester/toolchain_config.py
+++ b/tools/toolchain_tester/toolchain_config.py
@@ -59,7 +59,9 @@ LOCAL_GCC = '/usr/bin/gcc'
EMU_SCRIPT = 'toolchain/linux_arm-trusted/run_under_qemu_arm'
-BOOTSTRAP_ARGS = '--r_debug=0xXXXXXXXXXXXXXXXX --reserved_at_zero=0xXXXXXXXX'
+TEMPLATE_DIGITS = 'X'*16
Mark Seaborn 2012/07/30 18:51:12 Same nit about spaces
Austin Benson 2012/07/31 23:24:12 Done.
+BOOTSTRAP_ARGS = '--r_debug=0x%s --reserved_at_zero=0x%s' % (TEMPLATE_DIGITS,
+ TEMPLATE_DIGITS)
BOOTSTRAP_ARM = 'scons-out/opt-linux-arm/staging/nacl_helper_bootstrap'
SEL_LDR_ARM = 'scons-out/opt-linux-arm/staging/sel_ldr'
« src/trusted/nonnacl_util/sel_ldr_launcher_standalone.cc ('K') | « tests/spec2k/run_all.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698