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

Unified Diff: site_scons/site_tools/naclsdk.py

Issue 9316125: Adding untrusted crash dump / stack trace tests. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: add json escaping to fix windows Created 8 years, 10 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: site_scons/site_tools/naclsdk.py
diff --git a/site_scons/site_tools/naclsdk.py b/site_scons/site_tools/naclsdk.py
index 9a24035c0d391773d23281585aab423eb9c85747..921b33b756376652d49122d2af85a3ee6156b250 100755
--- a/site_scons/site_tools/naclsdk.py
+++ b/site_scons/site_tools/naclsdk.py
@@ -167,6 +167,7 @@ def _SetEnvForX86Sdk(env, sdk_path):
RANLIB=os.path.join(bin_path, '%s-ranlib' % arch),
OBJDUMP=os.path.join(bin_path, '%s-objdump' % arch),
STRIP=os.path.join(bin_path, '%s-strip' % arch),
+ ADDR2LINE=os.path.join(bin_path, '%s-addr2line' % arch),
BASE_LINKFLAGS=[cc_mode_flag],
BASE_CFLAGS=[cc_mode_flag],
BASE_CXXFLAGS=[cc_mode_flag],

Powered by Google App Engine
This is Rietveld 408576698