assembly - Convert .so code from ARM to x86 on Android -


i'm trying convert .so file generated ndk has been compiled arm android device .so file x86 device.

i can take .so file , use objdump read assembly, objdump doesn't put format can recompile it-- seems easier convert machine code instructions one-to-one.

any ideas? i'm hoping convert arm libraries x86 native code arm apps ndk run better on x86 android vmware.

what you're talking binary translation. can read intel's solution x86-based mobile devices.

this not easy thing solve generally. try adapt qemu's engine, converts binaries intermediate format , generates native code it, if you've used android emulator know performance of solution can poor.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -