I have a .NET application that runs on Linux, using Mono. I want to avoid users having to install Mono, so am using mkbundle
. I am running mkbundle
on an x86 machine, with the expectation of the resulting binary being able to run on x64 machines:
mkbundle MyApp.exe *.dll -o MyApp
I can then run the resulting application on the build machine with `./MyApp'
However, when I copy it to an x64 machine (and make it executable) it won't run, just outputting:
bash: ./MyApp: No such file or directory
If I try ldd
I get:
not a dynamic executable
Shouldn't binaries built for x86 run on x64 systems?