2

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.

1 Answer 1

2

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.

2

Not the answer you're looking for? Browse other questions tagged or ask your own question.