Chromium Code Reviews| 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) |