I have a c++ library xyz.so which has been created using a x86-64 machine.
The output of file -L xyz.so
is
ELF 64-bit LSB shared object, x86-64, verison 1 (GNU/Linux), dynamically linked
And the architecture of my machine uname -a
is aarch64 GNU/Linux
**Question:** I want to use the xyz.so library with my c++ code on my computer. Is there a way I could go about doing that?
Source: Windows Questions C++