[pypy-commit] pypy ppc-jit-backend: Removed parameter change of --architecture flag in objdump call.

hager noreply at buildbot.pypy.org
Fri Jul 22 16:57:28 CEST 2011


Author: hager <sven.hager at uni-duesseldorf.de>
Branch: ppc-jit-backend
Changeset: r45881:1a88619622ec
Date: 2011-07-19 11:54 +0200
http://bitbucket.org/pypy/pypy/changeset/1a88619622ec/

Log:	Removed parameter change of --architecture flag in objdump call.

diff --git a/pypy/jit/backend/arm/tool/objdump.py b/pypy/jit/backend/arm/tool/objdump.py
--- a/pypy/jit/backend/arm/tool/objdump.py
+++ b/pypy/jit/backend/arm/tool/objdump.py
@@ -7,7 +7,7 @@
 import os, sys, py
 
 def objdump(input):
-    os.system('objdump -D --architecture=powerpc:common64 --target=binary %s' % input)
+    os.system('objdump -D --architecture=arm --target=binary %s' % input)
 
 
 def get_tmp_file():


More information about the pypy-commit mailing list