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

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
« no previous file with comments | « 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..77ad7d6b61f09df0747677617cc9d59a03dea279 100644
--- a/pydir/utils.py
+++ b/pydir/utils.py
@@ -2,6 +2,14 @@ import os
import subprocess
import sys
+def GetObjcopyCmd():
+ """Return a suitable objcopy command."""
+ return 'arm-nacl-objcopy'
+
+def GetObjdumpCmd():
+ """Return a suitable objdump command."""
+ return 'arm-nacl-objdump'
+
def shellcmd(command, echo=True):
if not isinstance(command, str):
command = ' '.join(command)
« no previous file with comments | « pydir/szbuild.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698