Index: site_scons/site_tools/naclsdk.py |
diff --git a/site_scons/site_tools/naclsdk.py b/site_scons/site_tools/naclsdk.py |
index b292e82a0761d3a5e979c2b1a010a6552569027f..c2863435ce2600580504a3286c197ff7526cf0ea 100755 |
--- a/site_scons/site_tools/naclsdk.py |
+++ b/site_scons/site_tools/naclsdk.py |
@@ -1,5 +1,5 @@ |
#!/usr/bin/python |
-# Copyright (c) 2011 The Native Client Authors. All rights reserved. |
+# Copyright (c) 2012 The Native Client Authors. All rights reserved. |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
@@ -254,6 +254,7 @@ def _SetEnvForPnacl(env, root): |
pnacl_nativeld = binprefix + 'nativeld' + binext |
pnacl_disass = binprefix + 'dis' + binext |
pnacl_strip = binprefix + 'strip' + binext |
+ pnacl_nmf = binprefix + 'nmf' + binext |
# NOTE: XXX_flags start with space for easy concatenation |
# The flags generated here get baked into the commands (CC, CXX, LINK) |
@@ -305,6 +306,7 @@ def _SetEnvForPnacl(env, root): |
DISASS=pnacl_disass, |
OBJDUMP=pnacl_disass, |
STRIP=pnacl_strip, |
+ GENNMF=pnacl_nmf, |
) |