Blitzmax works on 1 pc won't on other

Archives Forums/Linux Discussion/Blitzmax works on 1 pc won't on other

Polan(Posted 2011) [#1]
I installed 11.04 linux in virtual box, with graphic interface. 64bit.
I managed to compile and launch file there, simple file printing test. Both console and graphic worked.
I loaded that file to vps running on 11.04 linux 64bit (the same version I have on virtual).
When I try to run it from console on vps I get this message:
-bash: ./test: No such file or directory
ls command shows that the file exist. I set chmod to 755 for it.
I'm logged in as administrator, file is in root/home/

Any ideas?


Brucey(Posted 2011) [#2]
It's either not there (in the same dir as you are using ./), or possibly not executable by your user.

You can also try :
ldd test

which will show you all the shared library dependencies for the exe - whether they are all there or not.


Polan(Posted 2011) [#3]
        not a dynamic executable

That's what I get with ldd.
Some lib missing?


Polan(Posted 2011) [#4]
I managed to fix it with this comand I believe

sudo apt-get -f upgrade ia32-libs