Reputation: 8551
Is it possible to translate an ARM binary (shared object) to the x86 architecture?
Basically I want to use the ARM libfoo.so
in a x86 environment.
Upvotes: 2
Views: 3253
Reputation: 1916
The best option is to get library sources and recompile.
You can also compile your application using libfoo.so
for ARM and use qemu
to run it on x86.
Mixing x86 and ARM code in one app is not possible.
Upvotes: 2