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

Unified Diff: pydir/utils.py

Issue 1777103002: Eliminate all uses of 'le32-nacl-objcopy'. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 9 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
« pydir/szbuild.py ('K') | « pydir/szbuild.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pydir/utils.py
diff --git a/pydir/utils.py b/pydir/utils.py
index f81c07ed4c3bf07236fe345588eff354b5d2fdee..a6b84ebc0d82d044c5827a8eda92bad6a7549590 100644
--- a/pydir/utils.py
+++ b/pydir/utils.py
@@ -2,6 +2,14 @@ import os
import subprocess
import sys
+def GetObjdumpCmd():
Sean Klein 2016/03/09 22:22:20 This issue is being tracked: https://bugs.chromi
+ """Return a suitable objdump command."""
+ return 'arm-nacl-objdump'
+
+def GetObjcopyCmd():
+ """Return a suitable objcopy command."""
+ return 'arm-nacl-objcopy'
+
def shellcmd(command, echo=True):
if not isinstance(command, str):
command = ' '.join(command)
« pydir/szbuild.py ('K') | « pydir/szbuild.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698