| Index: site_scons/site_tools/naclsdk.py
|
| diff --git a/site_scons/site_tools/naclsdk.py b/site_scons/site_tools/naclsdk.py
|
| index 1b4ab9ad524be3c0b9b0fd661f8b28900bfa6ab5..0cce6d1a37e3ee2efd34afb70f5a670d91095486 100755
|
| --- a/site_scons/site_tools/naclsdk.py
|
| +++ b/site_scons/site_tools/naclsdk.py
|
| @@ -200,6 +200,7 @@ def _SetEnvForPnacl(env, root):
|
| pnacl_ld = binprefix + 'ld' + binext
|
| pnacl_disass = binprefix + 'dis' + binext
|
| pnacl_finalize = binprefix + 'finalize' + binext
|
| + pnacl_opt = binprefix + 'opt' + binext
|
| pnacl_strip = binprefix + 'strip' + binext
|
|
|
| # NOTE: XXX_flags start with space for easy concatenation
|
| @@ -259,6 +260,7 @@ def _SetEnvForPnacl(env, root):
|
| STRIP=pnacl_strip,
|
| TRANSLATE=pnacl_translate + arch_flag + pnacl_translate_flags,
|
| PNACLFINALIZE=pnacl_finalize,
|
| + PNACLOPT=pnacl_opt,
|
| )
|
|
|
| if env.Bit('built_elsewhere'):
|
|
|