| 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..ab68e9f501e1b0ade307ad4257be05226149233f 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
|
| +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'
|
|
|