Trees | Indices | Help |
|
---|
|
1 # Fix bugs in dependent libraries. 2 3 # Fix bug in pyelftools. 4 from elftools.elf import elffile 5 6 # pyelftools does not officially support ARM but this seems to work anyway. 7 816 17 elffile.ELFFile = ELFFile 1811 result = super(ELFFile, self).get_machine_arch() 12 if result == "ARM": 13 result = "MIPS" 14 15 return result
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Oct 9 03:29:52 2017 | http://epydoc.sourceforge.net |